summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArwed von Merkatz2008-07-01 21:31:52 +0200
committerArwed von Merkatz2008-07-01 21:31:52 +0200
commitbc5e8c803304263d69ab055bd5e56bd9471377bd (patch)
treefed4fd0824d0d6920b82fe355e84c37efa579cca
parentc0bae07aaa31837fbfcbb5d5767fbb84251d5f2b (diff)
Revert "gcc: x86_64 build fix, otherwise tries to compile as x86_64-unknown-linux-gnu instead of x86_64-pc-linux-gnu and breaks"
This reverts commit 8e051dc1a92b67d3b076eda952d43dbde0cac342.
-rwxr-xr-xgnu/gcc/BUILD4
-rw-r--r--gnu/gcc/HISTORY5
2 files changed, 0 insertions, 9 deletions
diff --git a/gnu/gcc/BUILD b/gnu/gcc/BUILD
index 1740b97469..ad3d9c784e 100755
--- a/gnu/gcc/BUILD
+++ b/gnu/gcc/BUILD
@@ -11,10 +11,6 @@ if [[ "$ARCHITECTURE" == "pentium4" ||
CXXFLAGS=${CXXFLAGS//-ffast-math/}
fi &&
-if [[ "${SMGL_COMPAT_ARCHS[1]}" == "x86_64" ]]; then
- OPTS="--build=x86_64-pc-linux-gnu $OPTS"
-fi &&
-
# store CFLAGS and LDFLAGS persistently so they can be read by the other
# split spells later, see bug #10087
GCC_CFLAGS="$CFLAGS" &&
diff --git a/gnu/gcc/HISTORY b/gnu/gcc/HISTORY
index 0d9b1fb8d9..e7a4a91ed0 100644
--- a/gnu/gcc/HISTORY
+++ b/gnu/gcc/HISTORY
@@ -2,11 +2,6 @@
* DETAILS: Updated to 4.3.0
* DEPENDS: Depends on gmp and mpfr
* PRE_BUILD: Use gcc-$VERSION-ffast-math.patch to keep up. :)
- * BUILD: Pass --build=x86_64-pc-linux-gnu for x86_64, only way I found
- to get around this warning:
- configure: WARNING: If you wanted to set the --build type, don't use
- --host. If a cross compiler is detected then cross compile mode will
- be used.
* gcc-4.3.0-ffast-math.patch: Updated gcc-4.2.3-ffast-math.patch
2008-02-05 Eric Sandall <sandalle@sourcemage.org>