]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/binutils
Update for numerous lfs-files: removed deprecated configure options
[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.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_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
53 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
54 EXTRA_CONFIG = \
55 --target=$(CROSSTARGET) \
56 --prefix=$(TOOLS_DIR) \
57 --with-sysroot=$(ROOT) \
58 --with-lib-path=$(TOOLS_DIR)/lib
59 EXTRA_MAKE =
60 EXTRA_INSTALL =
61 else
62 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
63 EXTRA_ENV = \
64 CC="$(CROSSTARGET)-gcc" \
65 AR="$(CROSSTARGET)-ar" \
66 RANLIB="$(CROSSTARGET)-ranlib"
67 EXTRA_CONFIG = \
68 --host=$(BUILDTARGET) \
69 --build=$(BUILDTARGET) \
70 --prefix=$(TOOLS_DIR) \
71 --with-lib-path=$(TOOLS_DIR)/lib
72 EXTRA_MAKE =
73 EXTRA_INSTALL =
74 endif
75 endif
76
77 ifeq "$(BUILD_ARCH)" "armv5tel"
78 EXTRA_CONFIG += \
79 --with-abi=aapcs-linux \
80 --with-float=soft
81 endif
82
83 EXTRA_CONFIG += \
84 --disable-werror \
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 = d5d270fd0b698ed59ca5ade8e1b5059c
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 axf $(DIR_DL)/$(DL_FILE)
125 @mkdir $(DIR_SRC)/binutils-build
126
127 # Prevent installing libiberty to lib64.
128 cd $(DIR_APP) && sed -i 's%\(^MULTIOSDIR = \).*%\1 ../lib%' libiberty/Makefile.in
129
130 cd $(DIR_SRC)/binutils-build && $(EXTRA_ENV) $(DIR_APP)/configure $(EXTRA_CONFIG)
131 cd $(DIR_SRC)/binutils-build && make $(EXTRA_MAKE) $(MAKETUNING)
132 cd $(DIR_SRC)/binutils-build && make $(EXTRA_INSTALL) install
133 ifeq "$(ROOT)" ""
134 cp -v $(DIR_APP)/include/libiberty.h /usr/include
135 endif
136
137 ifeq "$(TOOLCHAIN)" "1"
138 ifeq "$(PASS)" "2"
139 cd $(DIR_SRC)/binutils-build && make -C ld clean
140 cd $(DIR_SRC)/binutils-build && make -C ld LIB_PATH=/usr/lib:/lib
141 cd $(DIR_SRC)/binutils-build && cp -v ld/ld-new $(TOOLS_DIR)/bin
142 endif
143 endif
144
145 @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build
146 @$(POSTBUILD)