citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit c56821398340680c57e1b3b8bba236b21233631e
parent 614b46528eb8e33545c4079dd28fd6d3e2e49279
Author: Kyle Milz <kyle@0x30.net>
Date:   Wed, 20 Jul 2016 00:03:54 -0600

lib: explicitly compile with c89

Diffstat:
Mlib/Jamfile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/Jamfile b/lib/Jamfile @@ -1,6 +1,6 @@ SubDir TOP lib ; -SubDirCcFlags -fPIC -pthread ; +SubDirCcFlags -fPIC -pthread -std=c89 ; Library libcitrun : runtime.c ; InstallLib $(PREFIX)/lib : libcitrun.a ;