X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Fbinutils;h=5afaeec2fbceae60413ee1a622599f52eeef6ce9;hb=9f312b3dde6578c6a3710694ec2e1df3ae677a9a;hp=08bc7c9b69a67ca1878253f9f5f31f0dcf25b15a;hpb=568438067cfef263b683f97b9350776f62396e04;p=ipfire-2.x.git diff --git a/lfs/binutils b/lfs/binutils index 08bc7c9b69..5afaeec2fb 100644 --- a/lfs/binutils +++ b/lfs/binutils @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2013 IPFire Team # +# Copyright (C) 2007-2016 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,7 +24,7 @@ include Config -VER = 2.22 +VER = 2.24 THISAPP = binutils-$(VER) DL_FILE = $(THISAPP).tar.bz2 @@ -38,17 +38,21 @@ ifeq "$(ROOT)" "" EXTRA_CONFIG = \ --prefix=/usr \ --enable-shared \ - --disable-nls + --disable-nls \ + --disable-werror EXTRA_MAKE = tooldir=/usr EXTRA_INSTALL = tooldir=/usr else ifeq "$(PASS)" "1" CFLAGS := $(patsubst -march=%,,$(CFLAGS)) CFLAGS := $(patsubst -mfloat-abi=%,,$(CFLAGS)) + CFLAGS := $(patsubst -fstack-protector-strong,-fstack-protector-all,$(CFLAGS)) TARGET = $(DIR_INFO)/$(THISAPP)-tools1 EXTRA_CONFIG = \ --target=$(CROSSTARGET) \ --prefix=/tools \ + --with-sysroot=$(ROOT) \ + --with-lib-path=/tools/lib \ --disable-nls \ --disable-werror EXTRA_MAKE = @@ -64,7 +68,8 @@ else --build=$(BUILDTARGET) \ --prefix=/tools \ --with-lib-path=/tools/lib \ - --disable-nls + --disable-nls \ + --disable-werror EXTRA_MAKE = EXTRA_INSTALL = endif @@ -76,6 +81,9 @@ ifeq "$(MACHINE_TYPE)" "arm" --with-float=soft endif +EXTRA_CONFIG += \ + --enable-64-bit-bfd + ############################################################################### # Top-level Rules ############################################################################### @@ -84,7 +92,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = ee0f10756c84979622b992a4a61ea3f5 +$(DL_FILE)_MD5 = e0f71a7b2ddab0f8612336ac81d9636b install : $(TARGET) @@ -114,11 +122,7 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/binutils-2.22-pt-pax-flags-20111121.patch - - # texinfo 5 syntax-fix. - cd $(DIR_APP) && sed -i -e "s/@colophon/@@colophon/" \ - -e "s/doc@cygnus/doc@@cygnus/" bfd/doc/bfd.texinfo + cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/binutils-2.24-pt-pax-flags-20131231.patch @mkdir $(DIR_SRC)/binutils-build @@ -126,8 +130,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && sed -i 's%\(^MULTIOSDIR = \).*%\1 ../lib%' libiberty/Makefile.in cd $(DIR_SRC)/binutils-build && $(EXTRA_ENV) MACHINE= $(DIR_APP)/configure $(EXTRA_CONFIG) - cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING) MACHINE= - cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install MACHINE= + cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING) MACHINE= + cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install MACHINE= ifeq "$(ROOT)" "" cp -v $(DIR_APP)/include/libiberty.h /usr/include else