diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-05-01 22:34:19 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-05-01 22:34:19 (GMT) |
commit | cec67c91dc63bc11edb471391c01705562427d42 (patch) | |
tree | a4b38a5e94d731f5d5dd968ee1001f7ca3821a97 /config/powerpc-ibm-aix5.x | |
parent | 4965bf1839b4219c3063e27d37bc59a777cc1fb5 (diff) | |
download | hdf5-cec67c91dc63bc11edb471391c01705562427d42.zip hdf5-cec67c91dc63bc11edb471391c01705562427d42.tar.gz hdf5-cec67c91dc63bc11edb471391c01705562427d42.tar.bz2 |
[svn-r12318]
Purpose:
H5CC feature
Description:
Made H5_CFLAGS change to several more configuration files.
Solution:
Moved nonessential flags from CFLAGS to H5_CFLAGS for several more
platforms. If my guesses about which flags were nonessential were
wrong, we'll have Daily Test errors.
Platforms tested:
mir, cray, copper, juniper (OS X)
Diffstat (limited to 'config/powerpc-ibm-aix5.x')
-rw-r--r-- | config/powerpc-ibm-aix5.x | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/powerpc-ibm-aix5.x b/config/powerpc-ibm-aix5.x index 833ae3f..2b79ca3 100644 --- a/config/powerpc-ibm-aix5.x +++ b/config/powerpc-ibm-aix5.x @@ -45,7 +45,7 @@ case $CC_BASENAME in # Turn off shared lib option. It causes some test suite to fail. enable_shared="${enable_shared:-no}" # Use -D_LARGE_FILES by default to support large file size. - CFLAGS="-qlanglvl=ansi -D_LARGE_FILES -DSTDC $CFLAGS" + H5_CFLAGS="$H5_CFLAGS -qlanglvl=ansi -D_LARGE_FILES -DSTDC $CFLAGS" DEBUG_CFLAGS="-g -qfullpath" DEBUG_CPPFLAGS= # -O causes test/dtypes to fail badly. Turn it off for now. @@ -60,7 +60,7 @@ case $CC_BASENAME in ;; *) - CFLAGS="$CFLAGS -ansi" + H5_CFLAGS="$H5_CFLAGS -ansi" DEBUG_CFLAGS="-g" DEBUG_CPPFLAGS= PROD_CFLAGS="-O" @@ -133,7 +133,8 @@ fi if test "X-" = "X-$f9x_flags_set"; then F9XSUFFIXFLAG="-qsuffix=f=f90" - FCFLAGS="$FCFLAGS -static -O ${F9XSUFFIXFLAG} -qmoddir=./ -k" + FCFLAGS="$FCFLAGS ${F9XSUFFIXFLAG} -k" + H5_FCFLAGS="$H5_FCFLAGS -static -qmoddir=./" FSEARCH_DIRS="-I./ -I../src" DEBUG_FCFLAGS="-O" PROD_FCFLAGS="-O" @@ -153,6 +154,6 @@ CXX=${CXX=xlC} # Added -qweaksymbol to suppress linker messages warning of duplicate # symbols; these warnings are harmless. - BMR -CXXFLAGS="$CXXFLAGS -qweaksymbol" +H5_CXXFLAGS="$H5_CXXFLAGS -qweaksymbol" |