summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-12-19 15:25:55 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-12-19 15:25:55 +0000
commit10ef2d8176b2e4dfd3096673c5a752d5389709f2 (patch)
treeafd6496b66fdf51f96090bb9aaf81e43f2d6b449
parentcbcc5d612f35cbea693e9c600fb1f15c77f82109 (diff)
Took out the '-D_ISOC99_SOURCE' option for Intel's CFLAGS settings.
It broke other code such as FlexIO and Socket. I have to find another solution to get around the isnan(2) problem with the Intel fortran libs. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2514 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--lib/make/known-architectures/linux12
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/make/known-architectures/linux b/lib/make/known-architectures/linux
index 5b3495c1..66529c6b 100644
--- a/lib/make/known-architectures/linux
+++ b/lib/make/known-architectures/linux
@@ -227,12 +227,8 @@ else
# Note that the defaults settings are for gcc/g++ and they are set by configure
case "$CC" in
[ei]cc)
- # the '-D_ISOC99_SOURCE' is needed to get the optimized math functions
- # defined from /usr/include/math.h
if test "$OPTIMISE" = "no"; then
- : ${CFLAGS='-D_ISOC99_SOURCE -O0'}
- else
- : ${CFLAGS='-D_ISOC99_SOURCE'}
+ : ${CFLAGS='-O0'}
fi
: ${C_OPTIMISE_FLAGS='-O3'}
: ${C_DEPEND='$(CC) -M $(CPPFLAGS)'}
@@ -251,12 +247,8 @@ else
case "$CXX" in
[ei]cc | ecpc)
- # the '-D_ISOC99_SOURCE' is needed to get the optimized math functions
- # defined from /usr/include/math.h
if test "$OPTIMISE" = "no"; then
- : ${CXXFLAGS='-D_ISOC99_SOURCE -O0'}
- else
- : ${CXXFLAGS='-D_ISOC99_SOURCE'}
+ : ${CXXFLAGS='-O0'}
fi
: ${CXX_OPTIMISE_FLAGS='-O3'}
: ${CXX_DEPEND='$(CXX) -M $(CPPFLAGS)'}