]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/gcc
Python3: Attempt to fix rootfile on 32 bit ARM
[ipfire-2.x.git] / lfs / gcc
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
4e6fcc73 4# Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
cd1a2927 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
cd1a2927
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
cd1a2927
MT
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 #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
cd1a2927 18# #
cd1a2927
MT
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
27d620ff 27VER = 11.1.0
82b312a9 28
570590a2 29GMP_VER = 6.2.1
854df4df 30MPFR_VER = 4.1.0
570590a2 31MPC_VER = 1.2.1
cd1a2927
MT
32
33THISAPP = gcc-$(VER)
11b5e5cb 34DL_FILE = $(THISAPP).tar.xz
dd714b8a 35DL_FROM = $(URL_IPFIRE)
cd1a2927 36DIR_APP = $(DIR_SRC)/$(THISAPP)
cd1a2927 37
05c54e82 38ifeq "$(PASS)" "1"
ed635824 39CFLAGS := $(patsubst -march=%,,$(CFLAGS))
f3c01b39 40CFLAGS := $(patsubst -mfpu=%,,$(CFLAGS))
ed635824 41CFLAGS := $(patsubst -mtune=%,,$(CFLAGS))
62a430f9 42CFLAGS := $(patsubst -mfloat-abi=%,,$(CFLAGS))
8675b78a 43CFLAGS := $(filter-out -fexceptions,$(CFLAGS))
11b5e5cb 44
11b5e5cb
AF
45CFLAGS := $(patsubst -mindirect-branch=%,,$(CFLAGS))
46CFLAGS := $(patsubst -mfunction-return=%,,$(CFLAGS))
d83422d1
AF
47CFLAGS := $(patsubst -fstack-clash-protection,,$(CFLAGS))
48CFLAGS := $(patsubst -fcf-protection,,$(CFLAGS))
11b5e5cb
AF
49endif
50
8675b78a 51CXXFLAGS := $(CFLAGS)
ff1d5f3a 52
b45e371f
MT
53ifeq "$(BUILD_ARCH)" "armv7hl"
54 FULL_BOOTSTRAP = 1
55endif
56
aafdd71b 57ifeq "$(BUILD_ARCH)" "armv6l"
b45e371f
MT
58 FULL_BOOTSTRAP = 1
59endif
60
6c4cc7ea 61# Normal build or $(TOOLS_DIR) build.
cd1a2927
MT
62#
63ifeq "$(ROOT)" ""
64 TARGET = $(DIR_INFO)/$(THISAPP)
afbd9856
MT
65 EXTRA_CONFIG = \
66 --prefix=/usr \
67 --libexecdir=/usr/lib \
68 --enable-shared \
69 --enable-threads=posix \
70 --enable-__cxa_atexit \
71 --enable-clocale=gnu \
eed179ac 72 --enable-languages=c,c++ \
afbd9856
MT
73 --disable-bootstrap \
74 --disable-nls
857d9bf2
MT
75 EXTRA_MAKE =
76 EXTRA_INSTALL =
cd1a2927 77else
15679d9f 78ifeq "$(PASS)" "1"
cd1a2927 79 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
82b312a9
MT
80 EXTRA_CONFIG = \
81 --target=$(CROSSTARGET) \
6c4cc7ea 82 --prefix=$(TOOLS_DIR) \
764a3f1f 83 --with-sysroot=$(ROOT) \
6c4cc7ea
MT
84 --with-local-prefix=$(TOOLS_DIR) \
85 --with-native-system-header-dir=$(TOOLS_DIR)/include \
e111b836 86 --with-glibc-version=2.11 \
82b312a9
MT
87 --disable-nls \
88 --disable-shared \
e111b836 89 --disable-multilib \
82b312a9
MT
90 --disable-decimal-float \
91 --disable-threads \
764a3f1f 92 --disable-libatomic \
82b312a9
MT
93 --disable-libmudflap \
94 --disable-libssp \
8bc5ded2 95 --disable-libmpx \
82b312a9
MT
96 --disable-libgomp \
97 --disable-libquadmath \
764a3f1f
AF
98 --disable-libstdc++-v3 \
99 --disable-libvtv \
100 --disable-libcilkrts \
101 --disable-libitm \
102 --disable-libsanitizer \
82b312a9
MT
103 --with-newlib \
104 --without-headers \
105 --without-ppl \
106 --without-cloog \
764a3f1f 107 --enable-languages=c,c++
66c36198
PM
108 EXTRA_MAKE =
109 EXTRA_INSTALL =
cd1a2927 110else
764a3f1f 111ifeq "$(PASS)" "2"
cd1a2927 112 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
82b312a9 113 EXTRA_ENV = \
6f8f4522 114 CC="$(CROSSTARGET)-gcc" \
764a3f1f 115 CXX="$(CROSSTARGET)-g++" \
82b312a9
MT
116 AR="$(CROSSTARGET)-ar" \
117 RANLIB="$(CROSSTARGET)-ranlib"
118 EXTRA_CONFIG = \
c16a83df
MT
119 --build=$(BUILDTARGET) \
120 --host=$(BUILDTARGET) \
6c4cc7ea
MT
121 --prefix=$(TOOLS_DIR) \
122 --with-local-prefix=$(TOOLS_DIR) \
123 --with-native-system-header-dir=$(TOOLS_DIR)/include \
82b312a9
MT
124 --enable-languages=c,c++ \
125 --disable-libstdcxx-pch \
e111b836 126 --disable-multilib \
b45e371f 127 --disable-libgomp
66c36198
PM
128 EXTRA_MAKE =
129 EXTRA_INSTALL =
b45e371f
MT
130
131 ifeq "$(FULL_BOOTSTRAP)" "1"
132 EXTRA_CONFIG += --enable-bootstrap
133 else
134 EXTRA_CONFIG += --disable-bootstrap
135 endif
764a3f1f
AF
136else
137 # PASS=L # libstdc++-v3
138 TARGET = $(DIR_INFO)/$(THISAPP)-libstdc++
139 EXTRA_ENV = \
6f8f4522 140 CC="$(CROSSTARGET)-gcc" \
764a3f1f
AF
141 AR="$(CROSSTARGET)-ar" \
142 RANLIB="$(CROSSTARGET)-ranlib"
143 EXTRA_CONFIG = \
144 --host=$(CROSSTARGET) \
6c4cc7ea 145 --prefix=$(TOOLS_DIR) \
764a3f1f
AF
146 --with-sysroot=$(ROOT) \
147 --disable-shared \
148 --disable-nls \
149 --disable-libstdcxx-threads \
150 --disable-libstdcxx-pch \
6c4cc7ea 151 --with-gxx-include-dir=$(TOOLS_DIR)/$(CROSSTARGET)/include/c++/$(VER)
66c36198
PM
152 EXTRA_MAKE =
153 EXTRA_INSTALL =
764a3f1f 154endif
cd1a2927
MT
155endif
156endif
157
0c30619a
MT
158ifeq "$(BUILD_ARCH)" "aarch64"
159 EXTRA_CONFIG += \
160 --enable-standard-branch-protection
161endif
162
dc7d6b20 163ifeq "$(BUILD_ARCH)" "armv7hl"
0c24d56d
MT
164 EXTRA_CONFIG += \
165 --with-float=hard
166endif
167
aafdd71b 168ifeq "$(BUILD_ARCH)" "armv6l"
51f9e7ac 169 EXTRA_CONFIG += \
f3fda4d3 170 --with-arch=armv6zk+fp \
aafdd71b
AF
171 --with-float=softfp
172# --disable-sjlj-exceptions
51f9e7ac
MT
173endif
174
e3a093f5
MT
175ifeq "$(BUILD_ARCH)" "riscv64"
176 EXTRA_CONFIG += \
177 --with-arch=rv64gc \
178 --with-abi=lp64d
179endif
180
ed635824 181EXTRA_CONFIG += \
51777e5d 182 --disable-multilib \
4e6fcc73 183 --with-bugurl=https://bugzilla.ipfire.org \
ed635824 184 --disable-libunwind-exceptions \
0b6ba4a0
MT
185 --enable-gnu-unique-object \
186 --without-zstd
ed635824 187
51f9e7ac
MT
188export XCFLAGS = $(CFLAGS)
189export TCFLAGS = $(CFLAGS)
190
cd1a2927
MT
191###############################################################################
192# Top-level Rules
193###############################################################################
82b312a9
MT
194
195objects = $(DL_FILE) \
11b5e5cb
AF
196 gmp-$(GMP_VER).tar.xz \
197 mpfr-$(MPFR_VER).tar.xz \
8675b78a 198 mpc-$(MPC_VER).tar.gz
cd1a2927 199
41921bd9 200$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
176b1cc6 201gmp-$(GMP_VER).tar.xz = $(DL_FROM)/gmp-$(GMP_VER).tar.xz
11b5e5cb 202mpfr-$(MPFR_VER).tar.xz = $(DL_FROM)/mpfr-$(MPFR_VER).tar.xz
8675b78a 203mpc-$(MPC_VER).tar.gz = $(DL_FROM)/mpc-$(MPC_VER).tar.gz
cd1a2927 204
27d620ff 205$(DL_FILE)_MD5 = 77f6252be0861ab918042acf42bc10ff
570590a2 206gmp-$(GMP_VER).tar.xz_MD5 = 0b82665c4a92fd2ade7440c13fcaa42b
854df4df 207mpfr-$(MPFR_VER).tar.xz_MD5 = bdd3d5efba9c17da8d83a35ec552baef
570590a2 208mpc-$(MPC_VER).tar.gz_MD5 = 9f16c976c25bb0f76b50be749cd7a3a8
cd1a2927
MT
209
210install : $(TARGET)
211
212check : $(patsubst %,$(DIR_CHK)/%,$(objects))
213
214download :$(patsubst %,$(DIR_DL)/%,$(objects))
215
216md5 : $(subst %,%_MD5,$(objects))
217
218###############################################################################
219# Downloading, checking, md5sum
220###############################################################################
221
222$(patsubst %,$(DIR_CHK)/%,$(objects)) :
223 @$(CHECK)
224
225$(patsubst %,$(DIR_DL)/%,$(objects)) :
226 @$(LOAD)
227
228$(subst %,%_MD5,$(objects)) :
229 @$(MD5)
230
231###############################################################################
232# Installation Details
233###############################################################################
234
235$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
236 @$(PREBUILD)
8675b78a 237 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
a7bb8b98
AF
238
239 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/gcc/gcc.git-745dae5-remove_cyclades.patch
240
241
dd714b8a 242 @mkdir $(DIR_SRC)/gcc-build
51f9e7ac 243
991d11d7
MT
244 cd $(DIR_APP) && sed -i 's/install_to_$$(INSTALL_DEST) //' libiberty/Makefile.in
245 cd $(DIR_APP) && sed -i gcc/Makefile.in \
246 -e 's@\./fixinc\.sh@-c true@' \
247 -e 's/^T_CFLAGS =$$/& -fomit-frame-pointer/'
248
249ifeq "$(TOOLCHAIN)" "1"
82b312a9 250 # Build gmp and mpfr internally in toolchain.
11b5e5cb 251 cd $(DIR_APP) && tar xfa $(DIR_DL)/gmp-$(GMP_VER).tar.xz
82b312a9 252 cd $(DIR_APP) && mv -v gmp-$(GMP_VER) gmp
11b5e5cb 253 cd $(DIR_APP) && tar xfa $(DIR_DL)/mpfr-$(MPFR_VER).tar.xz
82b312a9 254 cd $(DIR_APP) && mv -v mpfr-$(MPFR_VER) mpfr
8675b78a
MT
255 cd $(DIR_APP) && tar xfa $(DIR_DL)/mpc-$(MPC_VER).tar.gz
256 cd $(DIR_APP) && mv -v mpc-$(MPC_VER) mpc
82b312a9 257
991d11d7 258ifeq "$(PASS)" "2"
764a3f1f 259 cd $(DIR_APP) && cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
6c4cc7ea 260 `dirname $$($(TOOLS_DIR)/bin/$(CROSSTARGET)-gcc -print-libgcc-file-name)`/include-fixed/limits.h
991d11d7
MT
261endif
262
82b312a9 263 for file in $$(find $(DIR_APP)/gcc/config -name linux64.h -o -name linux.h \
cfd39a32 264 -o -name sysv4.h -o -name linux-eabi.h -o -name linux-elf.h -o -name aarch64-linux.h); do \
82b312a9
MT
265 echo "Processing $${file}..."; \
266 sed -i $${file} \
6c4cc7ea
MT
267 -e 's@/lib\(64\)\?\(32\)\?/ld@$(TOOLS_DIR)&@g' \
268 -e 's@/usr@$(TOOLS_DIR)@g'; \
764a3f1f
AF
269 echo '#undef STANDARD_STARTFILE_PREFIX_1' >> $${file}; \
270 echo '#undef STANDARD_STARTFILE_PREFIX_2' >> $${file}; \
6c4cc7ea 271 echo '#define STANDARD_STARTFILE_PREFIX_1 "$(TOOLS_DIR)/lib/"' >> $${file}; \
82b312a9
MT
272 echo '#define STANDARD_STARTFILE_PREFIX_2 ""' >> $${file}; \
273 done
82b312a9 274endif
dd714b8a 275
991d11d7 276ifeq "$(PASS)" "L"
764a3f1f
AF
277 # libstdc++ pass
278 cd $(DIR_SRC)/gcc-build && \
279 $(EXTRA_ENV) \
280 $(DIR_APP)/libstdc++-v3/configure \
281 $(EXTRA_CONFIG)
79ccd55d 282 cd $(DIR_SRC)/gcc-build && make $(EXTRA_MAKE)
764a3f1f 283 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
cfd39a32 284
764a3f1f 285else
82b312a9
MT
286 # The actual build.
287 cd $(DIR_SRC)/gcc-build && \
288 $(EXTRA_ENV) \
289 $(DIR_APP)/configure \
290 $(EXTRA_CONFIG)
3c2b8c6c 291 cd $(DIR_SRC)/gcc-build && make $(EXTRA_MAKE) $(MAKETUNING)
f97be0a6 292 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
764a3f1f 293endif
82b312a9 294
991d11d7
MT
295ifeq "$(TOOLCHAIN)" "1"
296 ifeq "$(PASS)" "1"
6c4cc7ea 297 ln -svf libgcc.a $$($(TOOLS_DIR)/bin/$(CROSSTARGET)-gcc -print-libgcc-file-name | sed 's/libgcc/&_eh/')
991d11d7
MT
298 endif
299
300 ifeq "$(PASS)" "2"
6c4cc7ea 301 ln -svf gcc $(TOOLS_DIR)/bin/cc
8f2ac12a 302 # remove gdb python files from libdir
6c4cc7ea 303 rm -rf $(TOOLS_DIR)/lib/*-gdb.py
991d11d7
MT
304 endif
305
306 ifeq "$(PASS)" "L"
307 # Workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70936
6c4cc7ea 308 sed -e "s/^#include_next/#include/" -i $(TOOLS_DIR)/$(CROSSTARGET)/include/c++/$(VER)/cstdlib
991d11d7
MT
309 endif
310
311else # NON-TOOLCHAIN
312 ln -svf ../usr/bin/cpp /lib
313 ln -svf gcc /usr/bin/cc
314 # remove gdb python files from libdir
315 rm -rf /usr/lib/*-gdb.py
cd1a2927 316endif
991d11d7 317
cd1a2927
MT
318 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build
319 @$(POSTBUILD)