diff options
author | midipix <writeonce@midipix.org> | 2024-02-22 05:32:33 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-22 05:35:56 +0000 |
commit | 54c2a9474e453880bdf8b2cdad4cbe79db4cd734 (patch) | |
tree | e60f6472846039f7403495beb291fcb7c8a86aed | |
parent | 4e2d4524169293bfd438ffef68cce7bbe745af01 (diff) | |
download | ntcon-54c2a9474e453880bdf8b2cdad4cbe79db4cd734.tar.bz2 ntcon-54c2a9474e453880bdf8b2cdad4cbe79db4cd734.tar.xz |
build system: if supported, add -Wpedantic to --strict cflags.
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | sofort/ccenv/ccswitch.strs | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -718,7 +718,7 @@ config_flags() # ccstrict if [ _$mb_ccstrict = _yes ]; then - mb_cflags_strict='$(_CFLAGS_Wall) $(_CFLAGS_Werror) $(_CFLAGS_Wextra) $(_CFLAGS_Wundef)' + mb_cflags_strict='$(_CFLAGS_Wall) $(_CFLAGS_Werror) $(_CFLAGS_Wextra) $(_CFLAGS_Wundef) $(_CFLAGS_Wpedantic)' fi # ldstrict diff --git a/sofort/ccenv/ccswitch.strs b/sofort/ccenv/ccswitch.strs index 0a76f03..277e02e 100644 --- a/sofort/ccenv/ccswitch.strs +++ b/sofort/ccenv/ccswitch.strs @@ -34,6 +34,7 @@ -Werror -Wextra -Wundef +-Wpedantic # debugging -g |