diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-07-15 22:47:25 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-07-15 22:47:25 (GMT) |
commit | 909b3f6beaa5bec01c9bb223c6eacebbac470242 (patch) | |
tree | 499157a984762f949fb968d311c405009ff8bd9d /config | |
parent | a6889aa255e45c4fcf004ddf9e25a2b2cae06513 (diff) | |
download | hdf5-909b3f6beaa5bec01c9bb223c6eacebbac470242.zip hdf5-909b3f6beaa5bec01c9bb223c6eacebbac470242.tar.gz hdf5-909b3f6beaa5bec01c9bb223c6eacebbac470242.tar.bz2 |
[svn-r8887] Purpose:
Improvement.
Description:
Moved the "-Wall -g -O0" to DEBUG_CFLAGS so that they are
used only in development mode.
Platforms tested:
Tested in TG-NCSA since this change affects ia64 platform only.
Misc. update:
Diffstat (limited to 'config')
-rw-r--r-- | config/ia64-linux-gnu | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/ia64-linux-gnu b/config/ia64-linux-gnu index 3b89501..9234a7f 100644 --- a/config/ia64-linux-gnu +++ b/config/ia64-linux-gnu @@ -21,8 +21,9 @@ fi case $CC_BASENAME in ecc) - CFLAGS="$CFLAGS -std=c99 -w2 -Wall" - DEBUG_CFLAGS="-g -O0" + # Default to C99 standard. + CFLAGS="${CFLAGS:--std=c99}" + DEBUG_CFLAGS="-w2 -Wall -g -O0" DEBUG_CPPFLAGS= PROD_CFLAGS="" # ecc has -O2 as default PROD_CPPFLAGS= |