summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2019-09-15 12:01:43 +0200
committerRobert Antoni Buj Gelonch <[email protected]>2019-09-25 16:16:54 +0200
commitd404d8b45c48c912ce80d683d4406018779b52d3 (patch)
tree9d7bc706dee9c266fa1aaf38f8f1b746155cbd8d
parente0dbf11e1b5793263bb36a92985dc8ca0e8688e1 (diff)
downloadmate-common-d404d8b45c48c912ce80d683d4406018779b52d3.tar.bz2
mate-common-d404d8b45c48c912ce80d683d4406018779b52d3.tar.xz
update mate-compiler-flags macro
- add more compiler flags - remove this constraint: "Only use compiler warnings for gcc" - remove the ansi flag (c89 iso standard) - Use autoconf archive macros (AX_)
-rw-r--r--macros/mate-compiler-flags.m471
1 files changed, 21 insertions, 50 deletions
diff --git a/macros/mate-compiler-flags.m4 b/macros/mate-compiler-flags.m4
index 4b5ecc0..6ba33be 100644
--- a/macros/mate-compiler-flags.m4
+++ b/macros/mate-compiler-flags.m4
@@ -28,13 +28,7 @@ AC_DEFUN([MATE_COMPILE_WARNINGS],[
[Turn on compiler warnings]),,
[enable_compile_warnings="m4_default([$1],[yes])"])
- warnCFLAGS=
- if test "x$GCC" != xyes; then
- enable_compile_warnings=no
- fi
-
- warning_flags=
- realsave_CFLAGS="$CFLAGS"
+ AC_LANG_PUSH([C])
case "$enable_compile_warnings" in
no)
@@ -47,24 +41,7 @@ AC_DEFUN([MATE_COMPILE_WARNINGS],[
warning_flags="-Wall -Wmissing-prototypes"
;;
maximum|error)
- warning_flags="-Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith"
- CFLAGS="$warning_flags $CFLAGS"
- for option in -Wno-sign-compare; do
- SAVE_CFLAGS="$CFLAGS"
- CFLAGS="$CFLAGS $option"
- AC_MSG_CHECKING([whether gcc understands $option])
- AC_TRY_COMPILE([], [],
- has_option=yes,
- has_option=no,)
- CFLAGS="$SAVE_CFLAGS"
- AC_MSG_RESULT($has_option)
- if test $has_option = yes; then
- warning_flags="$warning_flags $option"
- fi
- unset has_option
- unset SAVE_CFLAGS
- done
- unset option
+ warning_flags="-Wall -Wmissing-prototypes -Wbad-function-cast -Wcast-align -Wextra -Wformat-nonliteral -Wmissing-declarations -Wmissing-field-initializers -Wnested-externs -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Werror=format-security -Wno-sign-compare"
if test "$enable_compile_warnings" = "error" ; then
warning_flags="$warning_flags -Werror"
fi
@@ -73,32 +50,26 @@ AC_DEFUN([MATE_COMPILE_WARNINGS],[
AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings)
;;
esac
- CFLAGS="$realsave_CFLAGS"
- AC_MSG_CHECKING(what warning flags to pass to the C compiler)
- AC_MSG_RESULT($warning_flags)
-
- AC_ARG_ENABLE(iso-c,
- AS_HELP_STRING([--enable-iso-c],
- [Try to warn if code is not ISO C ]),,
- [enable_iso_c=no])
-
- AC_MSG_CHECKING(what language compliance flags to pass to the C compiler)
- complCFLAGS=
- if test "x$enable_iso_c" != "xno"; then
- if test "x$GCC" = "xyes"; then
- case " $CFLAGS " in
- *[\ \ ]-ansi[\ \ ]*) ;;
- *) complCFLAGS="$complCFLAGS -ansi" ;;
- esac
- case " $CFLAGS " in
- *[\ \ ]-pedantic[\ \ ]*) ;;
- *) complCFLAGS="$complCFLAGS -pedantic" ;;
- esac
- fi
- fi
- AC_MSG_RESULT($complCFLAGS)
- WARN_CFLAGS="$warning_flags $complCFLAGS"
+ # Always pass -Werror=unknown-warning-option to get Clang to fail on bad
+ # flags, otherwise they are always appended to the warn_cflags variable, and
+ # Clang warns on them for every compilation unit.
+ # If this is passed to GCC, it will explode, so the flag must be enabled
+ # conditionally.
+ AX_CHECK_COMPILE_FLAG([-Werror=unknown-warning-option],[
+ compiler_flags_test="-Werror=unknown-warning-option"
+ ],[
+ compiler_flags_test=""
+ ])
+
+ for flag in $warning_flags; do
+ AX_CHECK_COMPILE_FLAG([$flag], [AX_APPEND_FLAG([$flag], [WARN_CFLAGS])], [], [$compiler_flags_test], [])
+ done
+
+ AC_MSG_CHECKING(flags to pass to the C compiler $CC)
+ AC_MSG_RESULT(${WARN_CFLAGS})
+
+ AC_LANG_POP([C])
AC_SUBST(WARN_CFLAGS)
])