X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/faf5b15d1f286aae76eb601089afcae62a6407d6..b50a507730b57a37d68ca30cb900a437e67986ca:/buildtools/Cmake/Flags.cmake diff --git a/buildtools/Cmake/Flags.cmake b/buildtools/Cmake/Flags.cmake index 102dab0e07..a1d1954fd1 100644 --- a/buildtools/Cmake/Flags.cmake +++ b/buildtools/Cmake/Flags.cmake @@ -22,6 +22,11 @@ else(enable_compile_optimizations) set(optCFLAGS "-O0 ") endif(enable_compile_optimizations) +if(APPLE AND COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations") + set(optCFLAGS "-O0 ") +endif(APPLE AND COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6") + if(NOT enable_debug) set(CMAKE_C_FLAGS "-DNDEBUG ${CMAKE_C_FLAGS}") endif(NOT enable_debug) @@ -30,10 +35,6 @@ set(CMAKE_C_FLAGS "${optCFLAGS}${warnCFLAGS}${CMAKE_C_FLAGS}") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${custom_flags}") -if(WIN32) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=i486") -endif(WIN32) - # Try to make Mac a bit more complient to open source standards if(CMAKE_SYSTEM_NAME MATCHES "Darwin") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_XOPEN_SOURCE")