]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/blob - lfs/binutils
binutils: Update to 2.37
[people/mfischer/ipfire-2.x.git] / lfs / binutils
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2021 IPFire Team <info@ipfire.org> #
5 # #
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. #
10 # #
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. #
15 # #
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/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 2.37
28
29 THISAPP = binutils-$(VER)
30 DL_FILE = $(THISAPP).tar.xz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 # Normal build or $(TOOLS_DIR) build.
35 #
36 ifeq "$(ROOT)" ""
37 TARGET = $(DIR_INFO)/$(THISAPP)
38 EXTRA_CONFIG = \
39 --prefix=/usr \
40 --enable-shared \
41 --with-system-zlib \
42 --enable-plugins \
43 --enable-ld=default \
44 --disable-gold
45 EXTRA_MAKE = tooldir=/usr
46 EXTRA_INSTALL = tooldir=/usr
47 else
48 ifeq "$(PASS)" "1"
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))
56
57 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
58 EXTRA_CONFIG = \
59 --target=$(CROSSTARGET) \
60 --prefix=$(TOOLS_DIR) \
61 --with-sysroot=$(ROOT) \
62 --with-lib-path=$(TOOLS_DIR)/lib \
63 --disable-nls
64 EXTRA_MAKE =
65 EXTRA_INSTALL =
66 else
67 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
68 EXTRA_ENV = \
69 CC="$(CROSSTARGET)-gcc" \
70 AR="$(CROSSTARGET)-ar" \
71 RANLIB="$(CROSSTARGET)-ranlib"
72 EXTRA_CONFIG = \
73 --prefix=$(TOOLS_DIR) \
74 --with-lib-path=$(TOOLS_DIR)/lib \
75 --with-sysroot \
76 --disable-nls
77 EXTRA_MAKE =
78 EXTRA_INSTALL =
79 endif
80 endif
81
82 ifeq "$(BUILD_ARCH)" "armv6l"
83 EXTRA_CONFIG += \
84 --with-abi=aapcs-linux \
85 --with-float=softfp
86 endif
87
88 EXTRA_CONFIG += \
89 --disable-werror \
90 --enable-64-bit-bfd
91
92 ###############################################################################
93 # Top-level Rules
94 ###############################################################################
95
96 objects = $(DL_FILE)
97
98 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
99
100 $(DL_FILE)_MD5 = e78d9ff2976b745a348f4c1f27c77cb1
101
102 install : $(TARGET)
103
104 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
105
106 download :$(patsubst %,$(DIR_DL)/%,$(objects))
107
108 md5 : $(subst %,%_MD5,$(objects))
109
110 ###############################################################################
111 # Downloading, checking, md5sum
112 ###############################################################################
113
114 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
115 @$(CHECK)
116
117 $(patsubst %,$(DIR_DL)/%,$(objects)) :
118 @$(LOAD)
119
120 $(subst %,%_MD5,$(objects)) :
121 @$(MD5)
122
123 ###############################################################################
124 # Installation Details
125 ###############################################################################
126
127 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
128 @$(PREBUILD)
129 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
130 @mkdir $(DIR_SRC)/binutils-build
131
132 # Prevent installing libiberty to lib64.
133 cd $(DIR_APP) && sed -i 's%\(^MULTIOSDIR = \).*%\1 ../lib%' libiberty/Makefile.in
134
135 cd $(DIR_SRC)/binutils-build && $(EXTRA_ENV) $(DIR_APP)/configure $(EXTRA_CONFIG)
136 cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING)
137 cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install
138 ifeq "$(ROOT)" ""
139 cp -v $(DIR_APP)/include/libiberty.h /usr/include
140 endif
141
142 ifeq "$(TOOLCHAIN)" "1"
143 ifeq "$(PASS)" "2"
144 cd $(DIR_SRC)/binutils-build && make -C ld clean
145 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/usr/lib:/lib
146 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new $(TOOLS_DIR)/bin
147 endif
148 endif
149
150 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build
151 @$(POSTBUILD)