diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2004-08-20 01:03:37 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2004-08-20 01:03:37 (GMT) |
commit | cdc33df1a870fd91539f0e574179a03ab17249e6 (patch) | |
tree | 11338a47dd4f7fcd35196a28b0b4f1d64d073f73 | |
parent | 77ecfceedea12eeb6993727a5bedea92f71975ea (diff) | |
download | hdf5-cdc33df1a870fd91539f0e574179a03ab17249e6.zip hdf5-cdc33df1a870fd91539f0e574179a03ab17249e6.tar.gz hdf5-cdc33df1a870fd91539f0e574179a03ab17249e6.tar.bz2 |
[svn-r9125] Purpose: Maintenance
Description: Added support for PGI Fortran compiler on Linux64 (x86_64)
Solution:
Platforms tested: AMD OPteron box at AMD, Sunnyvale and verbena
with PGI and gcc compilers
Misc. update:
-rw-r--r-- | fortran/src/H5f90i.h | 15 | ||||
-rw-r--r-- | release_docs/RELEASE.txt | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/fortran/src/H5f90i.h b/fortran/src/H5f90i.h index 18e93fc..9905b34 100644 --- a/fortran/src/H5f90i.h +++ b/fortran/src/H5f90i.h @@ -110,7 +110,6 @@ typedef float real_f; #endif /*APPLE*/ -/* IA64 LINUX definitions */ /* LINUX definitions */ #if defined(i386) && defined(linux) #define DF_MT DFMT_LINIX @@ -132,6 +131,20 @@ typedef float real_f; #endif /*LINUX*/ +/* LINUX 64 definitions */ +#if defined __x86_64__ +#define DF_MT DFMT_LINIX +typedef char *_fcd; +typedef long long hsize_t_f; +typedef long long hssize_t_f; +typedef int size_t_f; +typedef int int_f; +typedef int hid_t_f; +typedef float real_f; +#define FNAME_POST_UNDERSCORE +#define _fcdtocp(desc) (desc) +#endif /*LINUX64*/ + /* IA64 LINUX definitions */ #if defined __ia64 typedef char *_fcd; diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index cf49a4a..41f868b 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -92,6 +92,8 @@ New Features Support for new platforms, languages and compilers. ======================================= + - ASdded PGI Fortran support for Linux64 (x86_64) systems + EIP - 2004/08/19 - Absoft compiler f95 v9.0 is supported on Linux 2.4 32bit EIP - 2004/07/29 - HDF5 Fortran APIs are supported on Mac OSX with IBM XL Fortran |