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 b027e7d2e5.
This commit is contained in:
Lassi Kortela 2019-08-10 01:55:55 +03:00
parent b027e7d2e5
commit c2a63dd28f
1 changed files with 1 additions and 1 deletions

View File

@ -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"