diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-05-03 21:45:44 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-05-03 21:45:44 (GMT) |
commit | 1f9410e11ee99534c9ca546f43e54f02c581c3d7 (patch) | |
tree | 7d4ae62f2949ecb3e647d4ad49225ad5dd7f3e9c /config/powerpc-ibm-aix4.x | |
parent | 4c073616dfb3856d1b81fd41d6f0990bd4b4f487 (diff) | |
download | hdf5-1f9410e11ee99534c9ca546f43e54f02c581c3d7.zip hdf5-1f9410e11ee99534c9ca546f43e54f02c581c3d7.tar.gz hdf5-1f9410e11ee99534c9ca546f43e54f02c581c3d7.tar.bz2 |
[svn-r12325]
Purpose:
Bug fix
Description:
The Daily Test errors were due to H5_CFLAGS not being included when
configure tested the sizes of some values.
Rolled back the offending changes.
Solution:
There is a "correct" solution to this problem, which is to ensure that
the H5_CFLAGS are included in autoconf's tests.
This rollback is only temporary until the "real" fix can be applied.
Platforms tested:
copper (problem only in aix config file)
Diffstat (limited to 'config/powerpc-ibm-aix4.x')
-rw-r--r-- | config/powerpc-ibm-aix4.x | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/powerpc-ibm-aix4.x b/config/powerpc-ibm-aix4.x index c5af6df..7fc6994 100644 --- a/config/powerpc-ibm-aix4.x +++ b/config/powerpc-ibm-aix4.x @@ -27,6 +27,9 @@ #CFLAGS="$CFLAGS -ansi" #CPPFLAGS="$CPPFLAGS -I." +# CFLAGS must be set else configure set it to -g +CFLAGS="$CFLAGS" + # What compiler flags should be used for code development? DEBUG_CFLAGS= DEBUG_CPPFLAGS= @@ -101,8 +104,7 @@ fi if test "X-" = "X-$f9x_flags_set"; then F9XSUFFIXFLAG="-qsuffix=f=f90" - FCFLAGS="$FCFLAGS ${F9XSUFFIXFLAG} -k" - H5_FCFLAGS="$H5_FCFLAGS -static -qmoddir=./" + FCFLAGS="$FCFLAGS -static -O ${F9XSUFFIXFLAG} -qmoddir=./ -k" FSEARCH_DIRS="-I./ -I../src" DEBUG_FCFLAGS="-O" PROD_FCFLAGS="-O" |