citrun

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

commit d804639e77f28d0c327300511b5840c0590f6b88
parent 00e344ce75c7362e394c7a097c9c1066dd3c117a
Author: Kyle Milz <kyle@0x30.net>
Date:   Wed, 15 Jun 2016 22:14:07 -0600

bin: use the .a version of libcitrun

Diffstat:
Mbin/Jamfile | 2+-
Mbin/citrun-wrap.sh | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/Jamfile b/bin/Jamfile @@ -8,7 +8,7 @@ rule Generate actions Generate { - sed -e s,%PREFIX%,$(PREFIX), -e s,%SHLIB_SUF%,$(SHLIB_SUF), < $(2) > $(1) ; + sed -e s,%PREFIX%,$(PREFIX), < $(2) > $(1) ; chmod 644 $(1) ; } diff --git a/bin/citrun-wrap.sh b/bin/citrun-wrap.sh @@ -1,7 +1,7 @@ #!/bin/sh export CITRUN_PATH="%PREFIX%/share/citrun" -export CITRUN_LIB="%PREFIX%/lib/libcitrun.%SHLIB_SUF%" +export CITRUN_LIB="%PREFIX%/lib/libcitrun.a" export PATH="$CITRUN_PATH:$PATH" exec $@