Files
rxcc/test

12 lines
167 B
Plaintext
Raw Normal View History

2026-01-29 16:59:26 -05:00
#!/bin/bash
nvim test.c
gcc -m32 test.c -o gcc.out
./.build/debug/rxcc test.c
gcc -m32 test.s -o rxcc.out
2026-01-29 16:59:26 -05:00
echo "GCC:"
./gcc.out
2026-01-29 16:59:26 -05:00
echo $?
echo "RXCC"
./rxcc.out
2026-01-29 16:59:26 -05:00
echo $?