2007-03-01 16:18:55 +00:00
|
|
|
dnl
|
|
|
|
dnl Taken from gnome-common/macros2/gnome-compiler-flags.m4
|
|
|
|
dnl
|
|
|
|
dnl We've added:
|
|
|
|
dnl -Wextra -Wshadow -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Winline -Wredundant-decls
|
2007-03-26 09:30:36 +00:00
|
|
|
dnl We've removed
|
|
|
|
dnl CFLAGS="$realsave_CFLAGS"
|
|
|
|
dnl to avoid clobbering user-specified CFLAGS
|
2007-03-01 16:18:55 +00:00
|
|
|
dnl
|
|
|
|
AC_DEFUN([LIBVIRT_COMPILE_WARNINGS],[
|
|
|
|
dnl ******************************
|
|
|
|
dnl More compiler warnings
|
|
|
|
dnl ******************************
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(compile-warnings,
|
|
|
|
AC_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],
|
|
|
|
[Turn on compiler warnings]),,
|
2007-03-21 14:52:12 +00:00
|
|
|
[enable_compile_warnings="m4_default([$1],[maximum])"])
|
2007-03-01 16:18:55 +00:00
|
|
|
|
|
|
|
warnCFLAGS=
|
|
|
|
|
2007-03-21 14:52:12 +00:00
|
|
|
try_compiler_flags="-Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables"
|
2007-03-01 16:18:55 +00:00
|
|
|
|
|
|
|
case "$enable_compile_warnings" in
|
|
|
|
no)
|
|
|
|
;;
|
|
|
|
minimum)
|
2007-03-21 14:52:12 +00:00
|
|
|
try_compiler_flags="$try_compiler_flags -Wall"
|
2007-03-01 16:18:55 +00:00
|
|
|
;;
|
|
|
|
yes)
|
2007-03-21 14:52:12 +00:00
|
|
|
try_compiler_flags="$try_compiler_flags -Wall -Wmissing-prototypes"
|
2007-03-01 16:18:55 +00:00
|
|
|
;;
|
|
|
|
maximum|error)
|
2007-03-21 14:52:12 +00:00
|
|
|
try_compiler_flags="$try_compiler_flags -Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith"
|
|
|
|
try_compiler_flags="$try_compiler_flags -Wextra -Wshadow -Wcast-align -Wwrite-strings -Waggregate-return"
|
2007-03-21 15:22:31 +00:00
|
|
|
try_compiler_flags="$try_compiler_flags -Wstrict-prototypes -Winline -Wredundant-decls -Wno-sign-compare"
|
2007-03-01 16:18:55 +00:00
|
|
|
if test "$enable_compile_warnings" = "error" ; then
|
2007-03-21 14:52:12 +00:00
|
|
|
try_compiler_flags="$try_compiler_flags -Werror"
|
2007-03-01 16:18:55 +00:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
AC_MSG_ERROR(Unknown argument '$enable_compile_warnings' to --enable-compile-warnings)
|
|
|
|
;;
|
|
|
|
esac
|
2007-03-21 14:52:12 +00:00
|
|
|
|
|
|
|
compiler_flags=
|
|
|
|
for option in $try_compiler_flags; 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
|
|
|
|
compiler_flags="$compiler_flags $option"
|
|
|
|
fi
|
|
|
|
unset has_option
|
|
|
|
unset SAVE_CFLAGS
|
|
|
|
done
|
|
|
|
unset option
|
|
|
|
unset try_compiler_flags
|
|
|
|
|
2007-03-01 16:18:55 +00:00
|
|
|
AC_ARG_ENABLE(iso-c,
|
|
|
|
AC_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)
|
|
|
|
|
2007-03-21 14:52:12 +00:00
|
|
|
WARN_CFLAGS="$compiler_flags $complCFLAGS"
|
2007-03-01 16:18:55 +00:00
|
|
|
AC_SUBST(WARN_CFLAGS)
|
|
|
|
])
|