X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ddccd2f0e340dd7befc8c921ac1fc168af1b1333..bd9bee9dcbceb25fdb5a293b91abbd5476db7ad2:/acmacro/compiler-flags.m4 diff --git a/acmacro/compiler-flags.m4 b/acmacro/compiler-flags.m4 index b6dd1e9ef0..8a585c9200 100644 --- a/acmacro/compiler-flags.m4 +++ b/acmacro/compiler-flags.m4 @@ -1,9 +1,15 @@ - - dnl SG_COMPILE_FLAGS dnl Turn on many useful compiler warnings dnl For now, only sets extra flags on GCC + +dnl Copyright (C) 2004, 2005, 2007. Martin Quinson. All rights reserved. + +dnl This file is part of the SimGrid project. This is free software: +dnl You can redistribute and/or modify it under the terms of the +dnl GNU LGPL (v2.1) licence. + + AC_DEFUN([SG_COMPILE_FLAGS],[ AC_ARG_ENABLE(compile-warnings, AS_HELP_STRING([--enable-compile-warnings], [use compiler warnings (default=no, unless in maintainer mode)]), @@ -46,7 +52,7 @@ AC_DEFUN([SG_COMPILE_FLAGS],[ if test "x$enable_compile_warnings" = "xyes"; then warnCFLAGS=`echo $warnCFLAGS -Wmissing-prototypes -Wmissing-declarations \ -Wpointer-arith -Wchar-subscripts -Wcomment -Wformat -Wwrite-strings \ - -Wno-unused-function -Wno-strict-aliasing \ + -Wno-unused-function -Wno-strict-aliasing -Wno-format-nonliteral \ -Werror \ | sed 's/ +/ /g'` # -Wno-unused-variable -Wno-unused-label @@ -66,7 +72,8 @@ AC_DEFUN([SG_COMPILE_FLAGS],[ *-O*) ;; *) optCFLAGS="$optCFLAGS -O3" ;; esac - optCFLAGS="$optCFLAGS -finline-functions -ffast-math -funroll-loops -fno-strict-aliasing" + optCFLAGS="$optCFLAGS -finline-functions -funroll-loops -fno-strict-aliasing" + # now that surf uses advanced maths in lagrangian, -ffast-math do break things GCC_VER=`gcc --version | head -n 1 | sed 's/^[^0-9]*\([^ ]*\).*$/\1/'` GCC_VER_MAJ=`echo $GCC_VER | sed 's/^\(.\).*$/\1/'`