diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-12-07 14:55:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-12-07 14:55:40 (GMT) |
commit | 49546098705f9c4febb2004bf5f043297ed51fa9 (patch) | |
tree | 9c5f3a608bd1aa331f26a85a289d36c7915b2240 /config | |
parent | f640fbff8c76c5fc3b1ad56cebaafdb6ff4b4b63 (diff) | |
download | hdf5-49546098705f9c4febb2004bf5f043297ed51fa9.zip hdf5-49546098705f9c4febb2004bf5f043297ed51fa9.tar.gz hdf5-49546098705f9c4febb2004bf5f043297ed51fa9.tar.bz2 |
[svn-r9625] Purpose:
Code cleanup
Description:
Clean/fix up compiler flags to be more consistent after recent changes.
Platforms tested:
None - eyeballed - very minor
Diffstat (limited to 'config')
-rw-r--r-- | config/intel-flags | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/config/intel-flags b/config/intel-flags index 5c76bfe..f5021d9 100644 --- a/config/intel-flags +++ b/config/intel-flags @@ -54,7 +54,7 @@ if test "X-icc" = "X-$cc_vendor"; then # General # Default to C99 standard. - CFLAGS="${CFLAGS:--std=c99}" + CFLAGS="${CFLAGS:--std=c99} $arch" # Production PROD_CFLAGS="-O3" @@ -83,12 +83,6 @@ case "$cc_vendor-$cc_version" in # v8.0 -O3 infinite loops when compiling test/tselect.c. Use -O2. PROD_CFLAGS="-O2" ;; - icc-8.1*) - # Add C99 standard flag to enable definition of ULLONG_MAX because in Intel - # compiler header file limits.h, C99 has to be enable to define this macro. - # Compilers of Version 8 and before don't have this problem. - CFLAGS="$CFLAGS -std=c99" - ;; esac # Clear cc info if no flags set |