From c2a63dd28fb1853427b1731206cdc5eefc8338f6 Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Sat, 10 Aug 2019 01:55:55 +0300 Subject: [PATCH] Revert "Add -pedantic compiler flag" Wow, that's a lot of GNU/C11 extensions! We're not ready to tackle all this stuff just yet. This reverts commit b027e7d2e55b4e1c36f369609b3ca8a6e9259996. --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index a3f6250..09e90d3 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,6 +1,6 @@ #!/bin/sh set -eu -CFLAGS="-Wall -Wextra -Wno-strict-aliasing -pedantic -std=gnu99" +CFLAGS="-Wall -Wextra -Wno-strict-aliasing -std=gnu99" CFLAGS="$CFLAGS -O2" # -falign-functions CFLAGS="$CFLAGS -I ../c -D NDEBUG -D USE_COMPUTED_GOTO" LFLAGS="-lm"