citrun

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

commit f4e31efa8ad39c939ac0340401f6cf39a279d91a
parent 8dcc0a560ffbcf517321123dce909722f2613f73
Author: Kyle Milz <kyle@windows.krwm.net>
Date:   Wed,  4 Jan 2017 22:05:14 -0800

Jam: only need -fPIC -ansi on unix

Diffstat:
MJamfile | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Jamfile b/Jamfile @@ -32,7 +32,9 @@ TestCoverage test-coverage ; # # libcitrun # -ObjectCcFlags lib.c : -fPIC -ansi ; +if ! $(NT) { + ObjectCcFlags lib.c : -fPIC -ansi ; +} Library libcitrun : lib.c ; #