Files
astaroth/acc/preprocess.sh
2019-06-14 14:19:07 +03:00

5 lines
209 B
Bash
Executable File

#!/bin/bash
# Preprocesses the give file using GCC. This script is usually automatically called in
# ./compile.sh, but may be called also individually for debugging purposes.
gcc -E -x c ${@} | sed "s/#.*//g"