summaryrefslogtreecommitdiffstats
path: root/config/intel-flags
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-12-07 17:12:18 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-12-07 17:12:18 (GMT)
commit27351668203bffa856935d7e4ee593262fade8df (patch)
treec80f01df5db547e557c3acbef8063dade4f9aadd /config/intel-flags
parent9f45ccfae3975efc9ce7fb49fa345ed0c5a5cd24 (diff)
downloadhdf5-27351668203bffa856935d7e4ee593262fade8df.zip
hdf5-27351668203bffa856935d7e4ee593262fade8df.tar.gz
hdf5-27351668203bffa856935d7e4ee593262fade8df.tar.bz2
[svn-r9629] Purpose:
Bug fix. Description: Last commit would impose $arch even if user has provided his own $CFLAGS. Fixed it. Removed the wording of gnu-flags inherited from the copy. Platforms tested: Tested in tg-ncsa. Misc. update:
Diffstat (limited to 'config/intel-flags')
-rw-r--r--config/intel-flags6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/intel-flags b/config/intel-flags
index f5021d9..101aa09 100644
--- a/config/intel-flags
+++ b/config/intel-flags
@@ -32,8 +32,8 @@ fi
# Common Intel flags for various situations
if test "X-icc" = "X-$cc_vendor"; then
- # Insert section about version specific problems from gnu-flags here, if
- # necessary.
+ # Insert section about version specific problems from compiler flags here,
+ # if necessary.
arch=
# Architecture-specific flags
@@ -54,7 +54,7 @@ if test "X-icc" = "X-$cc_vendor"; then
# General
# Default to C99 standard.
- CFLAGS="${CFLAGS:--std=c99} $arch"
+ CFLAGS="${CFLAGS:--std=c99 $arch}"
# Production
PROD_CFLAGS="-O3"