diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-03-31 16:47:51 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-03-31 16:47:51 (GMT) |
commit | 117b6cd323e59aab0b3aec73d675064b766fe797 (patch) | |
tree | 79713d4c6a39307a58f3d383412d6e0330d4ca09 /config | |
parent | 9dedbf110e768d02d1b8ee11788716aac826ddc8 (diff) | |
download | hdf5-117b6cd323e59aab0b3aec73d675064b766fe797.zip hdf5-117b6cd323e59aab0b3aec73d675064b766fe797.tar.gz hdf5-117b6cd323e59aab0b3aec73d675064b766fe797.tar.bz2 |
[svn-r6532] Purpose:
Bug fix
Description:
test/dtypes failed badly when -O is used. Trying to recompile test/*
code without -O did not eliminate the errors. So, the failure is
deep in the hdf5 library.
Solution:
For now, removed '-O' from $PROD_CFLAGS so that enable-production will use
no optimization. Need to find out what exactly trigger the errors.
Platforms tested:
Did not do h5committest because this is an AIX configure change only.
Tested it in Copper. Need to test it on other offsite machines.
Misc. update:
Updated release_docs/RELEASE.
Diffstat (limited to 'config')
-rw-r--r-- | config/powerpc-ibm-aix5.x | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/powerpc-ibm-aix5.x b/config/powerpc-ibm-aix5.x index 4b345fd..7ff7225 100644 --- a/config/powerpc-ibm-aix5.x +++ b/config/powerpc-ibm-aix5.x @@ -30,7 +30,8 @@ case $CC_BASENAME in CFLAGS="$CFLAGS" DEBUG_CFLAGS="-g" DEBUG_CPPFLAGS= - PROD_CFLAGS="-O" + # -O causes test/dtypes to fail badly. Turn it off for now. + PROD_CFLAGS="" PROD_CPPFLAGS= PROFILE_CFLAGS="-pg" PROFILE_CPPFLAGS= |