comparison src/native-binutils.mk @ 4626:b864dc772f15

gcc: remove multilib references * src/build-binutils.mk: remove win64 multilib options * src/build-gcc.mk: refactor cross build configure options where common * src/native-binutils.mk: remove win64 enable multilib * src/native-gcc.mk: refect options where common for cross build
author John Donoghue
date Mon, 12 Mar 2018 17:15:46 -0400
parents 4f00764eb5c2
children 5da1d6de7f6f
comparison
equal deleted inserted replaced
4625:b8385340a96a 4626:b864dc772f15
10 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/binutils/$($(PKG)_FILE) 10 $(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/binutils/$($(PKG)_FILE)
11 $(PKG)_URL_2 := ftp://ftp.cs.tu-berlin.de/pub/gnu/binutils/$($(PKG)_FILE) 11 $(PKG)_URL_2 := ftp://ftp.cs.tu-berlin.de/pub/gnu/binutils/$($(PKG)_FILE)
12 $(PKG)_DEPS := 12 $(PKG)_DEPS :=
13 13
14 $(PKG)_SYSDEP_OPTIONS := 14 $(PKG)_SYSDEP_OPTIONS :=
15 ifeq ($(ENABLE_WINDOWS_64),yes)
16 $(PKG)_SYSDEP_OPTIONS += \
17 --enable-multilib \
18 --enable-targets=x86_64-w64-mingw32,i686-w64-mingw32
19 endif
20
21 15
22 define $(PKG)_UPDATE 16 define $(PKG)_UPDATE
23 $(WGET) -q -O- 'http://ftp.gnu.org/gnu/binutils/?C=M;O=D' | \ 17 $(WGET) -q -O- 'http://ftp.gnu.org/gnu/binutils/?C=M;O=D' | \
24 $(SED) -n 's,.*<a href="binutils-\([0-9][^"]*\)\.tar.*,\1,p' | \ 18 $(SED) -n 's,.*<a href="binutils-\([0-9][^"]*\)\.tar.*,\1,p' | \
25 grep -v '^2\.1' | \ 19 grep -v '^2\.1' | \