summaryrefslogtreecommitdiffstats
path: root/config/gnu-flags
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-07-16 16:40:56 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-07-16 16:40:56 (GMT)
commit00f62b983a2f2051adfd4dd619c8db9148472347 (patch)
treed7afd1f8d6ab33c83a0b02a4aa98100fee7d0b6e /config/gnu-flags
parent6e7e3dc8c7ddebf88cacf3c2d4495eb80a25feba (diff)
downloadhdf5-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/gnu-flags')
-rw-r--r--config/gnu-flags8
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
;;