summaryrefslogtreecommitdiff
path: root/build_and_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build_and_test.sh')
-rw-r--r--build_and_test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_and_test.sh b/build_and_test.sh
index fb2ad89..97fdb75 100644
--- a/build_and_test.sh
+++ b/build_and_test.sh
@@ -30,8 +30,8 @@ case $(uname | tr '[:upper:]' '[:lower:]') in
COMPILEPP=cl.exe
OBJ_POSTFIX=.obj
EXE_POSTFIX=.exe
- FLAG_OBJ="/c /Fo"
- FLAG_EXE="/Fe"
+ FLAG_OBJ="-c -Fo"
+ FLAG_EXE="-Fe"
elif command -v gcc >/dev/null 2>&1; then
echo "C compiler found - GCC"
elif command -v clang >/dev/null 2>&1; then