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/irix6.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/irix6.x')
-rw-r--r-- | config/irix6.x | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/irix6.x b/config/irix6.x index e133cf8..6cfe04c 100644 --- a/config/irix6.x +++ b/config/irix6.x @@ -73,7 +73,7 @@ case "X-$CC_BASENAME" in # 1685: turn off warnings about turning off invalid warnings # 3201: remark - parameter not referenced #CFLAGS="$CFLAGS -woff 1174,1429,1209,1196,1685,3201" - CFLAGS="$CFLAGS -woff 1209,3201" + H5_CFLAGS="$H5_CFLAGS -woff 1209,3201" # Always turn off these compiler warnings for the old compiler: # 799: the `long long' type is not standard @@ -87,7 +87,7 @@ case "X-$CC_BASENAME" in # 84: a library is not used # 85: duplicate definition preemption (from -lnsl) # 134: duplicate weak definition preemption (from -lnsl) - CFLAGS="$CFLAGS -Wl,-woff,47,-woff,84,-woff,85,-woff,134" + H5_CFLAGS="$H5_CFLAGS -Wl,-woff,47,-woff,84,-woff,85,-woff,134" fi # Extra debugging flags @@ -113,7 +113,7 @@ fi if test "X-" = "X-$f9x_flags_set"; then F9XSUFFIXFLAG="" FSEARCH_DIRS="" - FCFLAGS="$FCFLAGS -mips4 -O -s" + H5_FCFLAGS="$H5_FCFLAGS -mips4 -O -s" DEBUG_FCFLAGS="-mips4 -O -s" PROD_FCFLAGS="-mips4 -O -s" PROFILE_FCFLAGS="-mips4 -O -s" @@ -132,7 +132,8 @@ fi if test -z "$cxx_flags_set"; then # -LANG:std required for std use; -ptused causes templates used to be # instantiated - CPPFLAGS="$CPPFLAGS -LANG:std -ptused" + CPPFLAGS="$CPPFLAGS -LANG:std" + H5_CPPFLAGS="$H5_CPPFLAGS -ptused" # libCio is a default library, since libtool before 1.5 doesn't fully # support C++ yet, default libraries must be explicitly specified. |