]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/binutils
Merge branch 'master' into next
[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.28
28
29 THISAPP = binutils-$(VER)
30 DL_FILE = $(THISAPP).tar.gz
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 --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 -mfloat-abi=%,,$(CFLAGS))
51
52 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
53 EXTRA_CONFIG = \
54 --target=$(CROSSTARGET) \
55 --prefix=/tools \
56 --with-sysroot=$(ROOT) \
57 --with-lib-path=/tools/lib
58 EXTRA_MAKE =
59 EXTRA_INSTALL =
60 else
61 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
62 EXTRA_ENV = \
63 CC="$(CROSSTARGET)-gcc" \
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 EXTRA_MAKE =
72 EXTRA_INSTALL =
73 endif
74 endif
75
76 ifeq "$(BUILD_ARCH)" "armv5tel"
77 EXTRA_CONFIG += \
78 --with-abi=aapcs-linux \
79 --with-float=soft
80 endif
81
82 EXTRA_CONFIG += \
83 --disable-werror \
84 --enable-64-bit-bfd
85
86 ###############################################################################
87 # Top-level Rules
88 ###############################################################################
89
90 objects = $(DL_FILE)
91
92 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
93
94 $(DL_FILE)_MD5 = d5d270fd0b698ed59ca5ade8e1b5059c
95
96 install : $(TARGET)
97
98 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
99
100 download :$(patsubst %,$(DIR_DL)/%,$(objects))
101
102 md5 : $(subst %,%_MD5,$(objects))
103
104 ###############################################################################
105 # Downloading, checking, md5sum
106 ###############################################################################
107
108 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
109 @$(CHECK)
110
111 $(patsubst %,$(DIR_DL)/%,$(objects)) :
112 @$(LOAD)
113
114 $(subst %,%_MD5,$(objects)) :
115 @$(MD5)
116
117 ###############################################################################
118 # Installation Details
119 ###############################################################################
120
121 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
122 @$(PREBUILD)
123 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
124 @mkdir $(DIR_SRC)/binutils-build
125
126 # Prevent installing libiberty to lib64.
127 cd $(DIR_APP) && sed -i 's%\(^MULTIOSDIR = \).*%\1 ../lib%' libiberty/Makefile.in
128
129 cd $(DIR_SRC)/binutils-build && $(EXTRA_ENV) $(DIR_APP)/configure $(EXTRA_CONFIG)
130 cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING)
131 cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install
132 ifeq "$(ROOT)" ""
133 cp -v $(DIR_APP)/include/libiberty.h /usr/include
134 endif
135
136 ifeq "$(TOOLCHAIN)" "1"
137 ifeq "$(PASS)" "2"
138 cd $(DIR_SRC)/binutils-build && make -C ld clean
139 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/usr/lib:/lib
140 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new /tools/bin
141 endif
142 endif
143
144 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build
145 @$(POSTBUILD)