Files
rxcc/test

12 lines
167 B
Bash
Executable File

#!/bin/bash
nvim test.c
gcc -m32 test.c -o gcc.out
./.build/debug/rxcc test.c
gcc -m32 test.s -o rxcc.out
echo "GCC:"
./gcc.out
echo $?
echo "RXCC"
./rxcc.out
echo $?