diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2003-06-19 19:33:12 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2003-06-19 19:33:12 (GMT) |
commit | 18185298e416aba1a7357279f53989bcc9d24adc (patch) | |
tree | 064cd0e8ae9ba304aff7451fd3509f978e69d39d /fortran | |
parent | 2c924c0df109c3ad3d85cd021bb44524872bf770 (diff) | |
download | hdf5-18185298e416aba1a7357279f53989bcc9d24adc.zip hdf5-18185298e416aba1a7357279f53989bcc9d24adc.tar.gz hdf5-18185298e416aba1a7357279f53989bcc9d24adc.tar.bz2 |
[svn-r7063]
Purpose: IA64 (titan) cleanup
Description: We defined IA64 variable for C-stubs compilation
on IA64 systems. But system defines __ia64 and
it is better to use it as we do on all other systems.
Solution: Removed -DIA64 from compilation flags since H5f90i.h header
files uses __ia64 variable that is defined on IA64 systems.
Platforms tested: titan
Misc. update:
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/config/ia64-linux-gnu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/config/ia64-linux-gnu b/fortran/config/ia64-linux-gnu index 7dc5239..b868dc4 100644 --- a/fortran/config/ia64-linux-gnu +++ b/fortran/config/ia64-linux-gnu @@ -21,7 +21,7 @@ fi case $CC_BASENAME in ecc) # CFLAGS must be set else configure set it to -g - CFLAGS="${CFLAGS:--DIA64}" + CFLAGS="$CFLAGS" DEBUG_CFLAGS="-g" DEBUG_CPPFLAGS= # ecc has -O2 as default |