summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-07-16 15:43:43 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-07-16 15:43:43 (GMT)
commit98ed6a7268a5cb2e85548efe535b522f865b4703 (patch)
treed9c7daa93c0ec3ce9e57c57e7cfab8b794f04f34 /config
parent8b9bd8d3a408e6e396553ae9bbc3dbabb35f35a1 (diff)
downloadhdf5-98ed6a7268a5cb2e85548efe535b522f865b4703.zip
hdf5-98ed6a7268a5cb2e85548efe535b522f865b4703.tar.gz
hdf5-98ed6a7268a5cb2e85548efe535b522f865b4703.tar.bz2
[svn-r4212] Purpose:
User knob.. Description: Added --enable-linux-lfs flag to configure and took out -malign-double flag from gcc compiles on i386 machines. Platforms tested: Linux 2.2 and 2.4
Diffstat (limited to 'config')
-rw-r--r--config/gnu-flags8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/gnu-flags b/config/gnu-flags
index 8f9733b..72d7847 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
;;