diff options
author | Omar Polo <op@omarpolo.com> | 2024-04-03 14:03:42 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-04-03 14:03:42 +0000 |
commit | 40ea7b163e15d70788aa7a8189f9000109a7b931 (patch) | |
tree | 74f44a24eff0cc260b3888824b1288942973b238 | |
parent | be265175c65f1b5425e294b06874e87aa900bde1 (diff) |
use -Werror=implicit-function-declaration for function detection
the previous -Werror triggers too easily: on NixOS for example the
FORTIFY_SOURCE #warning about a missing optimization level breaks all
the checks when using -O0 (which is the default for non-release builds).
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -146,7 +146,7 @@ NEED_OPENBSD_SOURCE=0 NEED_LIBBSD_OPENBSD_VIS=0 COMPATS= -COMP="${CC} ${CFLAGS} -Wno-unused -Werror" +COMP="${CC} ${CFLAGS} -Werror=implicit-function-declaration" # singletest name var extra-cflags extra-libs msg singletest() { |