aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-02-24 22:50:40 -0800
committerMichael Forney <mforney@mforney.org>2020-02-24 22:50:40 -0800
commit717d4f68f426d1edbf10b846448c63390840ffc5 (patch)
tree498668c8685b5597f39ba008210dd37acf0e839d
parent8e47cf45dfed44627fa6f73f8734f2149c661044 (diff)
Enable -Wpedantic by default
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index e93657c..861f0c8 100755
--- a/configure
+++ b/configure
@@ -153,7 +153,7 @@ echo done
printf "creating config.mk... "
cat >config.mk <<EOF
CC=${CC:-cc}
-CFLAGS=${CFLAGS:--std=c11 -Wall -Wno-parentheses -Wno-switch -g -pipe}
+CFLAGS=${CFLAGS:--std=c11 -Wall -Wpedantic -Wno-parentheses -Wno-switch -g -pipe}
LDFLAGS=$LDFLAGS
EOF
echo done