summaryrefslogtreecommitdiffstats
path: root/src/gcc.mk
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-10-14 01:30:14 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2014-10-14 01:32:44 (GMT)
commitd87240eb7bc3b4994b7b17007b71d20374b65924 (patch)
tree40888ea43b90c5e0d4383a26e09bd16f2c3a0098 /src/gcc.mk
parent30d33ef5dbb9884e25ea8f8eea3755f846ae7e6e (diff)
downloadmxe-d87240eb7bc3b4994b7b17007b71d20374b65924.zip
mxe-d87240eb7bc3b4994b7b17007b71d20374b65924.tar.gz
mxe-d87240eb7bc3b4994b7b17007b71d20374b65924.tar.bz2
Remove i686-pc-mingw32
Fixes #400 and #492. See #453. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'src/gcc.mk')
-rw-r--r--src/gcc.mk16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/gcc.mk b/src/gcc.mk
index e537121..6e8b5a5 100644
--- a/src/gcc.mk
+++ b/src/gcc.mk
@@ -9,11 +9,7 @@ $(PKG)_SUBDIR := gcc-$($(PKG)_VERSION)
$(PKG)_FILE := gcc-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := http://ftp.gnu.org/pub/gnu/gcc/gcc-$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_URL_2 := ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-$($(PKG)_VERSION)/$($(PKG)_FILE)
-$(PKG)_DEPS := binutils gcc-cloog gcc-gmp gcc-isl gcc-mpc gcc-mpfr
-
-$(PKG)_DEPS_i686-pc-mingw32 := $($(PKG)_DEPS) mingwrt w32api
-$(PKG)_DEPS_i686-w64-mingw32 := $($(PKG)_DEPS) mingw-w64
-$(PKG)_DEPS_x86_64-w64-mingw32 := $($(PKG)_DEPS) mingw-w64
+$(PKG)_DEPS := binutils gcc-cloog gcc-gmp gcc-isl gcc-mpc gcc-mpfr mingw-w64
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://ftp.gnu.org/gnu/gcc/?C=M;O=D' | \
@@ -62,16 +58,6 @@ define $(PKG)_POST_BUILD
-cp '$(PREFIX)/lib/gcc/$(TARGET)/$($(PKG)_VERSION)/'*.dll.a '$(PREFIX)/$(TARGET)/lib/'
endef
-define $(PKG)_BUILD_i686-pc-mingw32
- # build full cross gcc
- $($(PKG)_CONFIGURE) \
- --disable-sjlj-exceptions
- $(MAKE) -C '$(1).build' -j '$(JOBS)'
- $(MAKE) -C '$(1).build' -j 1 install
-
- $($(PKG)_POST_BUILD)
-endef
-
define $(PKG)_BUILD_mingw-w64
# build standalone gcc
$($(PKG)_CONFIGURE)