citrun

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

commit d63491d7619a259779ecac18d8b4524e5ba06a9c
parent 39b748a4a1daa597a6979d62ea8911b8c052eac1
Author: Kyle Milz <kyle@0x30.net>
Date:   Tue, 23 Aug 2016 23:14:29 -0600

Jam: some rule tweaks

Diffstat:
MJamrules | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jamrules b/Jamrules @@ -3,11 +3,11 @@ # instrumentation. If PREFIX is set, assume we're building a package. # if $(PREFIX) { - echo ...build citrun (RELEASE) on $(OS)... ; + echo ...build citrun-RELEASE on $(OS)... ; CITRUN_SHARE = $(PREFIX)/share/citrun ; } else { - echo ...build citrun (DEBUG) on $(OS)... ; + echo ...build citrun-DEBUG on $(OS)... ; CITRUN_SHARE = "`readlink -f $(TOP)/src`" ; CFLAGS += -Wall -g ; } @@ -15,7 +15,7 @@ else { # Try and respect this, {pkg,llvm}-config gives -O? too unfortunately OPTIM = $(CFLAGS) ; -C++FLAGS += -std=c++11 ; +C++FLAGS += -std=c++11 -fno-exceptions -fno-rtti ; CLANG_LIBS = -lclangAST