]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/binutils
kernel: update to 4.9.34
[ipfire-2.x.git] / lfs / binutils
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2016 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.24
28
29 THISAPP = binutils-$(VER)
30 DL_FILE = $(THISAPP).tar.bz2
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 # Normal build or /tools build.
35 #
36 ifeq "$(ROOT)" ""
37 TARGET = $(DIR_INFO)/$(THISAPP)
38 EXTRA_CONFIG = \
39 --prefix=/usr \
40 --enable-shared \
41 --disable-nls \
42 --disable-werror
43 EXTRA_MAKE = tooldir=/usr
44 EXTRA_INSTALL = tooldir=/usr
45 else
46 ifeq "$(PASS)" "1"
47 CFLAGS := $(patsubst -march=%,,$(CFLAGS))
48 CFLAGS := $(patsubst -mfloat-abi=%,,$(CFLAGS))
49 CFLAGS := $(patsubst -fstack-protector-strong,-fstack-protector-all,$(CFLAGS))
50 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
51 EXTRA_CONFIG = \
52 --target=$(CROSSTARGET) \
53 --prefix=/tools \
54 --with-sysroot=$(ROOT) \
55 --with-lib-path=/tools/lib \
56 --disable-nls \
57 --disable-werror
58 EXTRA_MAKE =
59 EXTRA_INSTALL =
60 else
61 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
62 EXTRA_ENV = \
63 CC="$(CROSSTARGET)-gcc -B/tools/lib/" \
64 AR="$(CROSSTARGET)-ar" \
65 RANLIB="$(CROSSTARGET)-ranlib"
66 EXTRA_CONFIG = \
67 --host=$(BUILDTARGET) \
68 --build=$(BUILDTARGET) \
69 --prefix=/tools \
70 --with-lib-path=/tools/lib \
71 --disable-nls \
72 --disable-werror
73 EXTRA_MAKE =
74 EXTRA_INSTALL =
75 endif
76 endif
77
78 ifeq "$(MACHINE_TYPE)" "arm"
79 EXTRA_CONFIG += \
80 --with-abi=aapcs-linux \
81 --with-float=soft
82 endif
83
84 EXTRA_CONFIG += \
85 --enable-64-bit-bfd
86
87 ###############################################################################
88 # Top-level Rules
89 ###############################################################################
90
91 objects = $(DL_FILE)
92
93 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
94
95 $(DL_FILE)_MD5 = e0f71a7b2ddab0f8612336ac81d9636b
96
97 install : $(TARGET)
98
99 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
100
101 download :$(patsubst %,$(DIR_DL)/%,$(objects))
102
103 md5 : $(subst %,%_MD5,$(objects))
104
105 ###############################################################################
106 # Downloading, checking, md5sum
107 ###############################################################################
108
109 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
110 @$(CHECK)
111
112 $(patsubst %,$(DIR_DL)/%,$(objects)) :
113 @$(LOAD)
114
115 $(subst %,%_MD5,$(objects)) :
116 @$(MD5)
117
118 ###############################################################################
119 # Installation Details
120 ###############################################################################
121
122 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
123 @$(PREBUILD)
124 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
125 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/binutils-2.24-pt-pax-flags-20131231.patch
126
127 @mkdir $(DIR_SRC)/binutils-build
128
129 # Prevent installing libiberty to lib64.
130 cd $(DIR_APP) && sed -i 's%\(^MULTIOSDIR = \).*%\1 ../lib%' libiberty/Makefile.in
131
132 cd $(DIR_SRC)/binutils-build && $(EXTRA_ENV) MACHINE= $(DIR_APP)/configure $(EXTRA_CONFIG)
133 cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING) MACHINE=
134 cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install MACHINE=
135 ifeq "$(ROOT)" ""
136 cp -v $(DIR_APP)/include/libiberty.h /usr/include
137 else
138 ifeq "$(PASS)" "2"
139 cd $(DIR_SRC)/binutils-build && make -C ld clean MACHINE=
140 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/usr/lib:/lib MACHINE=
141 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new /tools/bin
142 endif
143 endif
144 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build
145 @$(POSTBUILD)