From 3d64d5dca4e2beaa46a081367d0ce8c7d468c478 Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Wed, 21 May 2008 18:43:38 +0000 Subject: [PATCH] Intel compiler on Linux needs "-fp-mode strict" instead of "-mp". --- Installation/install_cgal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Installation/install_cgal b/Installation/install_cgal index 1c1d3ced58f..40d0a0fa7c7 100755 --- a/Installation/install_cgal +++ b/Installation/install_cgal @@ -976,9 +976,9 @@ set_compiler_flags() ;; *Linux*icc*|*Linux*icpc*) #### settings for icc on linux - # -mp is required for correct enough floating point operations - # necessary for interval arithmetic. - ADDITIONAL_CXXFLAGS="-mp" + # -fp-mode strict is required for correct enough floating point operations + # necessary for interval arithmetic (used to be -mp for some older versions). + ADDITIONAL_CXXFLAGS="-fp-mode strict" RUNTIME_LINKER_FLAG='-Wl,-R' PRINT_STACKTRACE_PROGRAM="idb" ;;