]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/gcc
gcc: remove gdb python files also in root build.
[people/pmueller/ipfire-2.x.git] / lfs / gcc
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 = 4.9.3
28
29 GMP_VER = 5.0.5
30 MPFR_VER = 2.4.2
31 MPC_VER = 1.0.3
32
33 THISAPP = gcc-$(VER)
34 DL_FILE = $(THISAPP).tar.gz
35 DL_FROM = $(URL_IPFIRE)
36 DIR_APP = $(DIR_SRC)/$(THISAPP)
37
38 CFLAGS := $(patsubst -march=%,,$(CFLAGS))
39 CFLAGS := $(patsubst -mtune=%,,$(CFLAGS))
40 CFLAGS := $(patsubst -mfloat-abi=%,,$(CFLAGS))
41 CFLAGS := $(filter-out -fexceptions,$(CFLAGS))
42 CXXFLAGS := $(CFLAGS)
43
44 # Normal build or /tools build.
45 #
46 ifeq "$(ROOT)" ""
47 TARGET = $(DIR_INFO)/$(THISAPP)
48 EXTRA_CONFIG = \
49 --prefix=/usr \
50 --libexecdir=/usr/lib \
51 --enable-shared \
52 --enable-threads=posix \
53 --enable-__cxa_atexit \
54 --enable-clocale=gnu \
55 --enable-languages=c,c++ \
56 --disable-bootstrap \
57 --disable-nls
58 EXTRA_MAKE =
59 EXTRA_INSTALL =
60 else
61 ifeq "$(PASS)" "1"
62 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
63 EXTRA_CONFIG = \
64 --target=$(CROSSTARGET) \
65 --prefix=/tools \
66 --with-sysroot=$(ROOT) \
67 --disable-nls \
68 --disable-shared \
69 --disable-decimal-float \
70 --disable-threads \
71 --disable-libatomic \
72 --disable-libmudflap \
73 --disable-libssp \
74 --disable-libgomp \
75 --disable-libquadmath \
76 --disable-libstdc++-v3 \
77 --disable-libvtv \
78 --disable-libcilkrts \
79 --disable-libitm \
80 --disable-libsanitizer \
81 --with-newlib \
82 --without-headers \
83 --without-ppl \
84 --without-cloog \
85 --enable-languages=c,c++
86 EXTRA_MAKE =
87 EXTRA_INSTALL =
88 else
89 ifeq "$(PASS)" "2"
90 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
91 EXTRA_ENV = \
92 CC="$(CROSSTARGET)-gcc -B/tools/lib/" \
93 CXX="$(CROSSTARGET)-g++" \
94 AR="$(CROSSTARGET)-ar" \
95 RANLIB="$(CROSSTARGET)-ranlib"
96 EXTRA_CONFIG = \
97 --host=$(BUILDTARGET) \
98 --build=$(BUILDTARGET) \
99 --target=$(BUILDTARGET) \
100 --prefix=/tools \
101 --with-local-prefix=/tools \
102 --with-native-system-header-dir=/tools/include \
103 --enable-clocale=gnu \
104 --enable-shared \
105 --enable-threads=posix \
106 --enable-__cxa_atexit \
107 --enable-languages=c,c++ \
108 --disable-libstdcxx-pch \
109 --enable-bootstrap
110 EXTRA_MAKE =
111 EXTRA_INSTALL =
112 else
113 # PASS=L # libstdc++-v3
114 TARGET = $(DIR_INFO)/$(THISAPP)-libstdc++
115 EXTRA_ENV = \
116 CC="$(CROSSTARGET)-gcc -B/tools/lib/" \
117 AR="$(CROSSTARGET)-ar" \
118 RANLIB="$(CROSSTARGET)-ranlib"
119 EXTRA_CONFIG = \
120 --host=$(CROSSTARGET) \
121 --prefix=/tools \
122 --with-sysroot=$(ROOT) \
123 --disable-shared \
124 --disable-nls \
125 --disable-libstdcxx-threads \
126 --disable-libstdcxx-pch \
127 --with-gxx-include-dir=/tools/$(CROSSTARGET)/include/c++/$(VER)
128 EXTRA_MAKE =
129 EXTRA_INSTALL =
130 endif
131 endif
132
133 # Disable stack protection in toolchain.
134 CFLAGS += -fno-stack-protector
135 endif
136
137 ifeq "$(MACHINE_TYPE)" "arm"
138 EXTRA_CONFIG += \
139 --with-float=soft \
140 --disable-sjlj-exceptions
141 endif
142
143 ifeq "$(MACHINE)" "i586"
144 EXTRA_CONFIG += \
145 --with-arch=i586 \
146 --with-tune=generic
147 endif
148
149 ifeq "$(MACHINE)" "x86_64"
150 EXTRA_CONFIG += \
151 --disable-multilib
152 endif
153
154 EXTRA_CONFIG += \
155 --with-bugurl=http://bugtracker.ipfire.org \
156 --disable-libunwind-exceptions \
157 --enable-gnu-unique-object
158
159 export XCFLAGS = $(CFLAGS)
160 export TCFLAGS = $(CFLAGS)
161
162 ###############################################################################
163 # Top-level Rules
164 ###############################################################################
165
166 objects = $(DL_FILE) \
167 gmp-$(GMP_VER).tar.bz2 \
168 mpfr-$(MPFR_VER).tar.bz2 \
169 mpc-$(MPC_VER).tar.gz
170
171 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
172 gmp-$(GMP_VER).tar.bz2 = $(DL_FROM)/gmp-$(GMP_VER).tar.bz2
173 mpfr-$(MPFR_VER).tar.bz2 = $(DL_FROM)/mpfr-$(MPFR_VER).tar.bz2
174 mpc-$(MPC_VER).tar.gz = $(DL_FROM)/mpc-$(MPC_VER).tar.gz
175
176 $(DL_FILE)_MD5 = 648bfba342bb41a4b5350fb685f85bc5
177 gmp-$(GMP_VER).tar.bz2_MD5 = 041487d25e9c230b0c42b106361055fe
178 mpfr-$(MPFR_VER).tar.bz2_MD5 = 89e59fe665e2b3ad44a6789f40b059a0
179 mpc-$(MPC_VER).tar.gz_MD5 = d6a1d5f8ddea3abd2cc3e98f58352d26
180
181 install : $(TARGET)
182
183 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
184
185 download :$(patsubst %,$(DIR_DL)/%,$(objects))
186
187 md5 : $(subst %,%_MD5,$(objects))
188
189 ###############################################################################
190 # Downloading, checking, md5sum
191 ###############################################################################
192
193 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
194 @$(CHECK)
195
196 $(patsubst %,$(DIR_DL)/%,$(objects)) :
197 @$(LOAD)
198
199 $(subst %,%_MD5,$(objects)) :
200 @$(MD5)
201
202 ###############################################################################
203 # Installation Details
204 ###############################################################################
205
206 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
207 @$(PREBUILD)
208 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
209 @mkdir $(DIR_SRC)/gcc-build
210
211 # Apply patches.
212 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/gcc/gcc49-i386-libgomp.patch
213 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/gcc/gcc49-libtool-no-rpath.patch
214 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/gcc/gcc49-no-add-needed.patch
215 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/gcc/gcc49-pr38757.patch
216 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/gcc/gcc49-pr64336.patch
217 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/gcc/gcc-fix-inlining-issues.patch
218
219 ifneq "$(ROOT)" ""
220 # Build gmp and mpfr internally in toolchain.
221 cd $(DIR_APP) && tar xfa $(DIR_DL)/gmp-$(GMP_VER).tar.bz2
222 cd $(DIR_APP) && mv -v gmp-$(GMP_VER) gmp
223 cd $(DIR_APP) && tar xfa $(DIR_DL)/mpfr-$(MPFR_VER).tar.bz2
224 cd $(DIR_APP) && mv -v mpfr-$(MPFR_VER) mpfr
225 cd $(DIR_APP) && tar xfa $(DIR_DL)/mpc-$(MPC_VER).tar.gz
226 cd $(DIR_APP) && mv -v mpc-$(MPC_VER) mpc
227
228 ifeq "$(PASS)" "1"
229 # GCC does not detect stack protection correctly, which causes problems
230 # for the build of libresolv_pic.a.
231 cd $(DIR_APP) && sed -i '/k prot/agcc_cv_libc_provides_ssp=yes' gcc/configure
232
233 for file in $$(find $(DIR_APP)/gcc/config -name linux64.h -o -name linux.h \
234 -o -name sysv4.h -o -name linux-eabi.h -o -name linux-elf.h); do \
235 echo "Processing $${file}..."; \
236 sed -i $${file} \
237 -e 's@/lib\(64\)\?\(32\)\?/ld@/tools&@g' \
238 -e 's@/usr@/tools@g'; \
239 echo '#undef STANDARD_STARTFILE_PREFIX_1' >> $${file}; \
240 echo '#undef STANDARD_STARTFILE_PREFIX_2' >> $${file}; \
241 echo '#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"' >> $${file}; \
242 echo '#define STANDARD_STARTFILE_PREFIX_2 ""' >> $${file}; \
243 done
244 endif
245
246 ifeq "$(PASS)" "2"
247 cd $(DIR_APP) && cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
248 `dirname $$(/tools/bin/$(CROSSTARGET)-gcc -print-libgcc-file-name)`/include-fixed/limits.h
249 for file in $$(find $(DIR_APP)/gcc/config -name linux64.h -o -name linux.h \
250 -o -name sysv4.h -o -name linux-eabi.h -o -name linux-elf.h); do \
251 echo "Processing $${file}..."; \
252 sed -i $${file} \
253 -e 's@/lib\(64\)\?\(32\)\?/ld@/tools&@g' \
254 -e 's@/usr@/tools@g'; \
255 echo '#undef STANDARD_STARTFILE_PREFIX_1' >> $${file}; \
256 echo '#undef STANDARD_STARTFILE_PREFIX_2' >> $${file}; \
257 echo '#define STANDARD_STARTFILE_PREFIX_1 "/tools/lib/"' >> $${file}; \
258 echo '#define STANDARD_STARTFILE_PREFIX_2 ""' >> $${file}; \
259 done
260 endif
261 endif
262
263 cd $(DIR_APP) && sed -i 's/install_to_$$(INSTALL_DEST) //' libiberty/Makefile.in
264 cd $(DIR_APP) && sed -i gcc/Makefile.in \
265 -e 's@\./fixinc\.sh@-c true@' \
266 -e 's/^T_CFLAGS =$$/& -fomit-frame-pointer/'
267
268 ifeq "$(PASS)" "L"
269 # libstdc++ pass
270 cd $(DIR_SRC)/gcc-build && \
271 $(EXTRA_ENV) \
272 $(DIR_APP)/libstdc++-v3/configure \
273 $(EXTRA_CONFIG)
274 cd $(DIR_SRC)/gcc-build && make $(MAKETUNING) $(EXTRA_MAKE)
275 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
276 else
277 # The actual build.
278 cd $(DIR_SRC)/gcc-build && \
279 $(EXTRA_ENV) \
280 $(DIR_APP)/configure \
281 $(EXTRA_CONFIG)
282 cd $(DIR_SRC)/gcc-build && make $(MAKETUNING) $(EXTRA_MAKE)
283 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
284 endif
285
286 ifeq "$(ROOT)" ""
287 ln -svf ../usr/bin/cpp /lib
288 ln -svf gcc /usr/bin/cc
289 # remove gdb python files from libdir
290 rm -rf /usr/lib/*-gdb.py
291 else
292 ifeq "$(PASS)" "1"
293 ln -svf libgcc.a $$(/tools/bin/$(CROSSTARGET)-gcc -print-libgcc-file-name | sed 's/libgcc/&_eh/')
294 else
295 ln -svf gcc /tools/bin/cc
296 # remove gdb python files from libdir
297 rm -rf /tools/lib/*-gdb.py
298 endif
299 endif
300 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build
301 @$(POSTBUILD)