home · contact · privacy
Drop gcc-specific compiler flags when gcc used is just non-GNU gcc mask.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 25 Aug 2015 04:15:33 +0000 (06:15 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 25 Aug 2015 04:15:33 +0000 (06:15 +0200)
build/compiler_flags

index 198da870d53130604998cdd8768dea0f65e7f89a..b17dac3db9ea7444a3215a19e0b1dc50671ac13e 100644 (file)
@@ -2,4 +2,12 @@
 # or any later version. For details on its copyright, license, and warranties,
 # see the file NOTICE in the root directory of the PlomRogue source package.
 
-CFLAGS='-std=c11 -pedantic-errors -Wall -Werror -Wextra -Wformat-security -O3'
+OFLAG='-O3'
+CFLAGS="-std=c11 -pedantic-errors -Wall -Werror -Wextra -Wformat-security $OFLAG"
+
+# For non-GNU gcc masks, drop all gcc-specific debugging flags.
+test=`stat --version 2>&1 | grep 'Free Software Foundation' | wc -l`
+if [ 1 -gt $test ]
+then
+    CFLAGS=$OFLAG
+fi