mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
[svn-r6440] Purpose:
Bug fix. Description: -O2 -finline-functions still causes production builds on eirene to fail. Solution: Downgrade optimization on gcc 2.95.x (x<3) to -O -finline-functions Platforms tested: Linux 2.2 (eirene)
This commit is contained in:
parent
55a42d534a
commit
3b6e9ff03c
@ -136,7 +136,7 @@ case "$cc_vendor-$cc_version" in
|
||||
PROD_CFLAGS="-O3 $NOFP"
|
||||
;;
|
||||
*)
|
||||
PROD_CFLAGS="-O2 $NOFP -finline-functions"
|
||||
PROD_CFLAGS="-O $NOFP -finline-functions"
|
||||
;;
|
||||
esac
|
||||
PROD_CPPFLAGS=
|
||||
|
Loading…
Reference in New Issue
Block a user