Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 347c192f authored by Marc-Alexandre Espiaut's avatar Marc-Alexandre Espiaut
Browse files

Fixing a compiling error with GCC 4.9. Link Time Optimization does not seems...

Fixing a compiling error with GCC 4.9. Link Time Optimization does not seems to behave correctly with this compiler.
parent 77ed7dad
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ else() ...@@ -120,7 +120,7 @@ else()
if(CMAKE_CXX_COMPILER_ID STREQUAL "Intel") if(CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
SET(SCALFMM_FLAGS_OPTI_RELEASE "${FLAGS_64bits} -march=native -fp-model precise -fp-model source -fimf-precision=low -funroll-loops -ftree-vectorize" CACHE STRING "Set your optimization flags for release mode.") SET(SCALFMM_FLAGS_OPTI_RELEASE "${FLAGS_64bits} -march=native -fp-model precise -fp-model source -fimf-precision=low -funroll-loops -ftree-vectorize" CACHE STRING "Set your optimization flags for release mode.")
else() else()
SET(SCALFMM_FLAGS_OPTI_RELEASE "${FLAGS_64bits} -ffast-math -flto -funroll-loops -ftree-vectorize" CACHE STRING "Set your optimization flags for release mode.") SET(SCALFMM_FLAGS_OPTI_RELEASE "${FLAGS_64bits} -ffast-math -funroll-loops -ftree-vectorize" CACHE STRING "Set your optimization flags for release mode.")
endif() endif()
ENDIF(APPLE) ENDIF(APPLE)
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment