Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
asprintf & friends replacement
[simgrid.git] / acmacro / compiler-flags.m4
1
2
3 dnl SG_COMPILE_FLAGS
4 dnl Turn on many useful compiler warnings
5 dnl For now, only sets extra flags on GCC
6
7 AC_DEFUN([SG_COMPILE_FLAGS],[
8   AC_ARG_ENABLE(compile-warnings,
9     AS_HELP_STRING([--enable-compile-warnings], [use compiler warnings (default=no, unless in maintainer mode)]),
10     enable_compile_warnings=$withval,enable_compile_warnings=no)
11
12   AC_ARG_ENABLE(compile-optimizations,
13     AS_HELP_STRING([--disable-compile-optimizations], [use compiler optimizations (default=yes, unless if CFLAGS is explicitly set)]),
14     enable_compile_optimizations=$enableval,enable_compile_optimizations=auto)
15
16   if test "x$cflags_set" != "xyes" ; then 
17     # if user didn't specify CFLAGS explicitely
18     
19     # AC PROG CC tests whether -g is accepted. 
20     # Cool, but it also tries to set -O2. I don't want it with gcc
21     saveCFLAGS="$CFLAGS"
22     CFLAGS=
23     case " $saveCFLAGS " in
24     *-g*) CFLAGS="-g" ;; 
25     esac
26     case " $saveCFLAGS " in
27     *-O2*) test "x$CC" = xgcc || CFLAGS="$CFLAGS -O2" ;; 
28     esac
29     
30     # damn AC PROG CC, why did you set -O??
31     CFLAGS="-g"
32   fi
33
34   if test "x$enable_compile_warnings" = "xyes" ; then
35     AC_MSG_CHECKING(the warning flags for this compiler)
36     warnCFLAGS=
37     if test "x$CC" = "xgcc" || test "x$GCC" = "xyes" ; then
38       case " $CFLAGS " in
39       *-Wall*) ;;
40       *) warnCFLAGS="-Wall -Wunused" ;;
41       esac
42
43       ## -W is not all that useful.  And it cannot be controlled
44       ## with individual -Wno-xxx flags, unlike -Wall
45       if test "x$enable_compile_warnings" = "xyes"; then
46         warnCFLAGS=`echo $warnCFLAGS  -Wmissing-prototypes -Wmissing-declarations \
47         -Wpointer-arith -Wchar-subscripts -Wcomment -Wformat -Wwrite-strings \
48         -Wno-unused-variable -Wno-unused-function -Wno-unused-label \
49         -Werror \
50       ## -Wformat=2 chokes on the snprintf replacement because the format is passed to real sprintf
51       ## -Wshadow chokes on try{ try{} } constructs
52         | sed 's/ +/ /g'`
53       fi
54     fi
55     AC_MSG_RESULT($warnCFLAGS)
56     # placed before since gcc remembers the last one on conflict
57     CFLAGS="$warnCFLAGS $CFLAGS"
58   fi
59   
60   if test "x$enable_compile_optimizations" = "xyes" ||
61      test "x$enable_compile_optimizations" = "xauto" ; then
62     AC_MSG_CHECKING(the optimization flags for this compiler)
63     optCFLAGS=
64     if test "x$CC" = "xgcc" || test "x$GCC" = "xyes" ; then
65         case " $CFLAGS " in
66         *-O*) ;;
67         *) optCFLAGS="$optCFLAGS -O3" ;;
68         esac
69         optCFLAGS="$optCFLAGS -finline-functions -ffast-math -funroll-loops -fno-strict-aliasing"
70       
71         GCC_VER=`gcc --version | head -n 1 | sed 's/^[^0-9]*\([^ ]*\).*$/\1/'`
72         GCC_VER_MAJ=`echo $GCC_VER | sed 's/^\(.\).*$/\1/'`
73         if test "x$target_cpu" = "xpowerpc" && test "x$GCC_VER_MAJ" != "x2" ; then
74           # avoid gcc bug #12828, which is fixed in 3.4.0, but this version
75           # isn't propagated enough to desserve an extra check
76           
77           # Note that the flag didn't exist before gcc 3.0
78           optCFLAGS="$optCFLAGS -fno-loop-optimize"
79         fi
80         dnl A C_MSG_WARN(GCC_VER_MAJ=$GCC_VER_MAJ)
81     fi
82     AC_MSG_RESULT($optCFLAGS)
83     # Take it only if CFLAGS not explicitly set. Unless the flag was explicitly given
84     if test "x$cflags_set" != "xyes" ; then  
85       CFLAGS="$optCFLAGS $CFLAGS"
86     fi
87   fi
88   
89 ])