1 ###############################################################################
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2020 IPFire Team <info@ipfire.org> #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 ###############################################################################
21 ###############################################################################
23 ###############################################################################
29 THISAPP = binutils-$(VER)
30 DL_FILE = $(THISAPP).tar.xz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
34 # Normal build or $(TOOLS_DIR) build.
37 TARGET = $(DIR_INFO)/$(THISAPP)
45 EXTRA_MAKE = tooldir=/usr
46 EXTRA_INSTALL = tooldir=/usr
49 CFLAGS := $(patsubst -march=%,,$(CFLAGS))
50 CFLAGS := $(patsubst -mfpu=%,,$(CFLAGS))
51 CFLAGS := $(patsubst -mfloat-abi=%,,$(CFLAGS))
52 CFLAGS := $(patsubst -mindirect-branch=%,,$(CFLAGS))
53 CFLAGS := $(patsubst -mfunction-return=%,,$(CFLAGS))
54 CFLAGS := $(patsubst -fstack-clash-protection,,$(CFLAGS))
55 CFLAGS := $(patsubst -fcf-protection,,$(CFLAGS))
57 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
59 --target=$(CROSSTARGET) \
60 --prefix=$(TOOLS_DIR) \
61 --with-sysroot=$(ROOT) \
62 --with-lib-path=$(TOOLS_DIR)/lib
66 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
68 CC="$(CROSSTARGET)-gcc" \
69 AR="$(CROSSTARGET)-ar" \
70 RANLIB="$(CROSSTARGET)-ranlib"
72 --host=$(BUILDTARGET) \
73 --build=$(BUILDTARGET) \
74 --prefix=$(TOOLS_DIR) \
75 --with-lib-path=$(TOOLS_DIR)/lib
81 ifeq "$(BUILD_ARCH)" "armv5tel"
83 --with-abi=aapcs-linux \
91 ###############################################################################
93 ###############################################################################
97 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
99 $(DL_FILE)_MD5 = 7126f370ffbd46c08fcc5ce7aee2805d
103 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
105 download :$(patsubst %,$(DIR_DL)/%,$(objects))
107 md5 : $(subst %,%_MD5,$(objects))
109 ###############################################################################
110 # Downloading, checking, md5sum
111 ###############################################################################
113 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
116 $(patsubst %,$(DIR_DL)/%,$(objects)) :
119 $(subst %,%_MD5,$(objects)) :
122 ###############################################################################
123 # Installation Details
124 ###############################################################################
126 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
128 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
129 @mkdir $(DIR_SRC)/binutils-build
131 # Prevent installing libiberty to lib64.
132 cd $(DIR_APP) && sed -i 's%\(^MULTIOSDIR = \).*%\1 ../lib%' libiberty/Makefile.in
134 cd $(DIR_SRC)/binutils-build && $(EXTRA_ENV) $(DIR_APP)/configure $(EXTRA_CONFIG)
135 cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING)
136 cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install
138 cp -v $(DIR_APP)/include/libiberty.h /usr/include
141 ifeq "$(TOOLCHAIN)" "1"
143 cd $(DIR_SRC)/binutils-build && make -C ld clean
144 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/usr/lib:/lib
145 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new $(TOOLS_DIR)/bin
149 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build