Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Implement gras_datadesc_copy. Was actually easier than expected, that's a really...
[simgrid.git] / acmacro / compiler-flags.m4
index eadecbc..9beedef 100644 (file)
@@ -48,9 +48,10 @@ 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-variable -Wno-unused-function -Wno-unused-label \
+        -Wno-unused-function  \
         -Werror \
        | sed 's/ +/ /g'`
+       # -Wno-unused-variable  -Wno-unused-label
       fi
     fi
     AC_MSG_RESULT($warnCFLAGS)
@@ -86,5 +87,12 @@ AC_DEFUN([SG_COMPILE_FLAGS],[
       CFLAGS="$optCFLAGS $CFLAGS"
     fi
   fi
+
+  if test x$lt_cv_prog_gnu_ld = xyes ; then
+    LD_DYNAMIC_FLAGS=-Wl,--export-dynamic
+  else
+    LD_DYNAMIC_FLAGS=
+  fi
+  AC_SUBST(LD_DYNAMIC_FLAGS) 
   
 ])