summaryrefslogtreecommitdiff
path: root/lib/make
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-02-18 11:02:51 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-02-18 11:02:51 +0000
commit18e0b7bb4c984f980305ddb77b2ef1e7ce6ccb87 (patch)
treecdbe05e92c1fc0c22aeed971a696f8f8614a1064 /lib/make
parent32178ef2be6bde6327bf2affe4404b00b61345e1 (diff)
For Intel compiler optimization: use '-xN' instead of '-xW' as the first option
is deprecated. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3576 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make')
-rw-r--r--lib/make/known-architectures/linux2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/make/known-architectures/linux b/lib/make/known-architectures/linux
index e79967af..e1fe0d60 100644
--- a/lib/make/known-architectures/linux
+++ b/lib/make/known-architectures/linux
@@ -213,7 +213,7 @@ else
# check if the processor is a Pentium4 (ie. supports SSE2 instructions)
default_intel_fopt_flags='-O3 -ip'
if test "`grep -w flags /proc/cpuinfo 2>&1 | grep -w sse2`"; then
- default_intel_fopt_flags='-O2 -xW -ip'
+ default_intel_fopt_flags='-O2 -xN -ip'
fi
: ${F77_OPTIMISE_FLAGS="$default_intel_fopt_flags"}
: ${F90_OPTIMISE_FLAGS="$default_intel_fopt_flags"}