From ebb10e55979f6ee5af297b2feb446fff967e9bb4 Mon Sep 17 00:00:00 2001 From: Zachary Pierson Date: Sun, 12 Feb 2017 16:09:21 -0600 Subject: [PATCH] One of the warning flags was misspelled. Oops! --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index b022e235c..cda80781c 100755 --- a/build.sh +++ b/build.sh @@ -2,7 +2,7 @@ release_mode=0 -warnings_to_disable="-Wno-attributes -Wno-implicit-function-declaration -Wno-incompatible-pointer-types -Wno-switch -Wno-pointer-sign -Wno-tautological-constant-out-of-range-compare -Wno-autological-compare" +warnings_to_disable="-Wno-attributes -Wno-implicit-function-declaration -Wno-incompatible-pointer-types -Wno-switch -Wno-pointer-sign -Wno-tautological-constant-out-of-range-compare -Wno-tautological-compare" libraries="-pthread -ldl -lm" other_args="-x c" compiler="gcc"