diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-12-24 06:43:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-12-24 06:43:05 (GMT) |
commit | bee84bf3b970be0365684b983f0d18a7c9d73fb6 (patch) | |
tree | 069cbbb3635c0793bf76e9c5919b774bb55eedce /config/gnu-flags | |
parent | 617d2704c4216e520d36dd034eb4d3785be76f8d (diff) | |
download | hdf5-bee84bf3b970be0365684b983f0d18a7c9d73fb6.zip hdf5-bee84bf3b970be0365684b983f0d18a7c9d73fb6.tar.gz hdf5-bee84bf3b970be0365684b983f0d18a7c9d73fb6.tar.bz2 |
[svn-r11834] Purpose:
Bug fix
Description:
Tone down the optimization flags for gcc 4.2.x in the same way as we
do for all the other gcc 3/4 builds, to avoid datatype conversion issues.
Platforms tested:
FreeBSD 4.11 (sleipnir) w/gcc 4.2
Not tested by h5committest
Diffstat (limited to 'config/gnu-flags')
-rw-r--r-- | config/gnu-flags | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/gnu-flags b/config/gnu-flags index c7a8904..85c970d 100644 --- a/config/gnu-flags +++ b/config/gnu-flags @@ -142,7 +142,7 @@ case "$cc_vendor-$cc_version" in gcc-2.95.[34]) PROD_CFLAGS="-O3" ;; - gcc-3.[0-4]*|gcc-4.[01]*) + gcc-3.[0-4]*|gcc-4.[012]*) # The optimization level is reduced for gcc 3.* and 4.* due to problems # with code generation for src/H5Tconv.c with the -O2 & -O3 # optimization levels (which shows up as failures for various integer |