diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-07-16 16:40:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-07-16 16:40:56 (GMT) |
commit | 00f62b983a2f2051adfd4dd619c8db9148472347 (patch) | |
tree | d7afd1f8d6ab33c83a0b02a4aa98100fee7d0b6e /config | |
parent | 6e7e3dc8c7ddebf88cacf3c2d4495eb80a25feba (diff) | |
download | hdf5-00f62b983a2f2051adfd4dd619c8db9148472347.zip hdf5-00f62b983a2f2051adfd4dd619c8db9148472347.tar.gz hdf5-00f62b983a2f2051adfd4dd619c8db9148472347.tar.bz2 |
[svn-r4213] Purpose:
Bug fix... (sorta)
Description:
Added --enable-linux-lfs configure flag to have better control over whether
the enable large file support on Linux machines. Also removed the
-malign-double flag for gcc since it can potentially cause errors which
are difficult to detect.
Platforms tested:
Linix 2.2 & 2.4 (eirene and dangermouse)
Diffstat (limited to 'config')
-rw-r--r-- | config/gnu-flags | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/gnu-flags b/config/gnu-flags index c9959c0..22ed2be 100644 --- a/config/gnu-flags +++ b/config/gnu-flags @@ -90,10 +90,10 @@ case "$host_os-$host_cpu" in # This check should be kept in sync with the *-i686 check below case "$cc_vendor-$cc_version" in gcc-2.95*) - ARCH=${ARCH:="-march=i686 -malign-double"} + ARCH=${ARCH:="-march=i686"} ;; gcc-*|egcs-*|pgcc-*) - ARCH=${ARCH:="-mcpu=pentiumpro -march=pentiumpro -malign-double"} + ARCH=${ARCH:="-mcpu=pentiumpro -march=pentiumpro"} ;; esac ;; @@ -103,10 +103,10 @@ case "$host_os-$host_cpu" in *-i686) case "$cc_vendor-$cc_version" in gcc-2.9[56]*) - ARCH=${ARCH:="-march=i686 -malign-double"} + ARCH=${ARCH:="-march=i686"} ;; gcc-*|egcs-*|pgcc-*) - ARCH=${ARCH:="-mcpu=pentiumpro -march=pentiumpro -malign-double"} + ARCH=${ARCH:="-mcpu=pentiumpro -march=pentiumpro"} ;; esac ;; |