citrun

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

commit e27a34bb1176b2d08fb598f749397d9cceadaf14
parent 66a2bbcee4a87c397263977e557387d0ffdfb782
Author: Kyle Milz <krwmilz@gmail.com>
Date:   Sun, 24 Oct 2021 23:41:45 +0000

t: gcc no longer exists on my system, update

Diffstat:
Mt/wrap_ninja.t | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/t/wrap_ninja.t b/t/wrap_ninja.t @@ -19,10 +19,10 @@ my $wrap = Test::Cmd->new( prog => 'bin/citrun_wrap', workdir => '' ); $wrap->write( 'main.c', 'int main(void) { return 0; }' ); $wrap->write( 'build.ninja', <<'EOF' ); rule cc - command = gcc $cflags -c $in -o $out + command = cc $cflags -c $in -o $out rule link - command = gcc $in -o $out + command = cc $in -o $out build main.o: cc main.c build program: link main.o