sus-regex/ctest

17 lines
381 B
Plaintext
Raw Normal View History

2024-04-04 09:23:46 +03:00
#!/bin/sh
./build || exit
export C_INCLUDE_PATH="$PWD:$C_INCLUDE_PATH"
export LD_LIBRARY_PATH="$PWD/target:$LD_LIBRARY_PATH"
export LIBRARY_PATH="$PWD/target:$LIBRARY_PATH"
2024-04-05 10:21:27 +03:00
gcc -O2 test.c -o target/cmogus -L"$LIBRARY_PATH" -l:amogus || exit
2024-04-08 03:25:15 +03:00
if [ -z "$NODEBUG" ];
then
gdb -q \
-iex 'set confirm no' \
-ex 'layout asm' \
-ex 'start' \
target/cmogus
else
target/cmogus
fi