]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/binutils
tzdata: update to 2018i
[ipfire-2.x.git] / lfs / binutils
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2017 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.30
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
55 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
56 EXTRA_CONFIG = \
57 --target=$(CROSSTARGET) \
58 --prefix=$(TOOLS_DIR) \
59 --with-sysroot=$(ROOT) \
60 --with-lib-path=$(TOOLS_DIR)/lib
61 EXTRA_MAKE =
62 EXTRA_INSTALL =
63 else
64 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
65 EXTRA_ENV = \
66 CC="$(CROSSTARGET)-gcc" \
67 AR="$(CROSSTARGET)-ar" \
68 RANLIB="$(CROSSTARGET)-ranlib"
69 EXTRA_CONFIG = \
70 --host=$(BUILDTARGET) \
71 --build=$(BUILDTARGET) \
72 --prefix=$(TOOLS_DIR) \
73 --with-lib-path=$(TOOLS_DIR)/lib
74 EXTRA_MAKE =
75 EXTRA_INSTALL =
76 endif
77 endif
78
79 ifeq "$(BUILD_ARCH)" "armv5tel"
80 EXTRA_CONFIG += \
81 --with-abi=aapcs-linux \
82 --with-float=soft
83 endif
84
85 EXTRA_CONFIG += \
86 --disable-werror \
87 --enable-64-bit-bfd
88
89 ###############################################################################
90 # Top-level Rules
91 ###############################################################################
92
93 objects = $(DL_FILE)
94
95 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
96
97 $(DL_FILE)_MD5 = ffc476dd46c96f932875d1b2e27e929f
98
99 install : $(TARGET)
100
101 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
102
103 download :$(patsubst %,$(DIR_DL)/%,$(objects))
104
105 md5 : $(subst %,%_MD5,$(objects))
106
107 ###############################################################################
108 # Downloading, checking, md5sum
109 ###############################################################################
110
111 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
112 @$(CHECK)
113
114 $(patsubst %,$(DIR_DL)/%,$(objects)) :
115 @$(LOAD)
116
117 $(subst %,%_MD5,$(objects)) :
118 @$(MD5)
119
120 ###############################################################################
121 # Installation Details
122 ###############################################################################
123
124 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
125 @$(PREBUILD)
126 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
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) $(DIR_APP)/configure $(EXTRA_CONFIG)
133 cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING)
134 cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install
135 ifeq "$(ROOT)" ""
136 cp -v $(DIR_APP)/include/libiberty.h /usr/include
137 endif
138
139 ifeq "$(TOOLCHAIN)" "1"
140 ifeq "$(PASS)" "2"
141 cd $(DIR_SRC)/binutils-build && make -C ld clean
142 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/usr/lib:/lib
143 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new $(TOOLS_DIR)/bin
144 endif
145 endif
146
147 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build
148 @$(POSTBUILD)