summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
Diffstat (limited to 'run')
-rwxr-xr-xrun3
1 files changed, 2 insertions, 1 deletions
diff --git a/run b/run
index 96e9fac..2efa8b5 100755
--- a/run
+++ b/run
@@ -1,6 +1,7 @@
#!/usr/bin/env bash
set -e
-clang -Wall -Werror -o exe $@
+CC=gcc
+${CC} -Wall -Werror -o exe $@
./exe
result=$?
rm exe