1 ###############################################################################
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
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. #
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. #
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/>. #
19 ###############################################################################
21 ###############################################################################
23 ###############################################################################
34 DL_FILE = $(THISAPP).tar.xz
35 DL_FROM = $(URL_IPFIRE)
36 DIR_APP = $(DIR_SRC)/$(THISAPP)
38 CFLAGS := $(patsubst -march=%,,$(CFLAGS))
39 CFLAGS := $(patsubst -mfpu=%,,$(CFLAGS))
40 CFLAGS := $(patsubst -mtune=%,,$(CFLAGS))
41 CFLAGS := $(patsubst -mfloat-abi=%,,$(CFLAGS))
42 CFLAGS := $(filter-out -fexceptions,$(CFLAGS))
45 CFLAGS := $(patsubst -mindirect-branch=%,,$(CFLAGS))
46 CFLAGS := $(patsubst -mfunction-return=%,,$(CFLAGS))
51 ifeq "$(BUILD_ARCH)" "armv7hl"
55 ifeq "$(BUILD_ARCH)" "armv5tel"
59 # Normal build or $(TOOLS_DIR) build.
62 TARGET = $(DIR_INFO)/$(THISAPP)
65 --libexecdir=/usr/lib \
67 --enable-threads=posix \
68 --enable-__cxa_atexit \
69 --enable-clocale=gnu \
70 --enable-languages=c,c++ \
77 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
79 --target=$(CROSSTARGET) \
80 --prefix=$(TOOLS_DIR) \
81 --with-sysroot=$(ROOT) \
82 --with-local-prefix=$(TOOLS_DIR) \
83 --with-native-system-header-dir=$(TOOLS_DIR)/include \
86 --disable-decimal-float \
89 --disable-libmudflap \
93 --disable-libquadmath \
94 --disable-libstdc++-v3 \
96 --disable-libcilkrts \
98 --disable-libsanitizer \
103 --enable-languages=c,c++
108 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
110 CC="$(CROSSTARGET)-gcc" \
111 CXX="$(CROSSTARGET)-g++" \
112 AR="$(CROSSTARGET)-ar" \
113 RANLIB="$(CROSSTARGET)-ranlib"
115 --build=$(BUILDTARGET) \
116 --prefix=$(TOOLS_DIR) \
117 --with-local-prefix=$(TOOLS_DIR) \
118 --with-native-system-header-dir=$(TOOLS_DIR)/include \
119 --enable-languages=c,c++ \
120 --disable-libstdcxx-pch \
125 ifeq "$(FULL_BOOTSTRAP)" "1"
126 EXTRA_CONFIG += --enable-bootstrap
128 EXTRA_CONFIG += --disable-bootstrap
131 # PASS=L # libstdc++-v3
132 TARGET = $(DIR_INFO)/$(THISAPP)-libstdc++
134 CC="$(CROSSTARGET)-gcc" \
135 AR="$(CROSSTARGET)-ar" \
136 RANLIB="$(CROSSTARGET)-ranlib"
138 --host=$(CROSSTARGET) \
139 --prefix=$(TOOLS_DIR) \
140 --with-sysroot=$(ROOT) \
143 --disable-libstdcxx-threads \
144 --disable-libstdcxx-pch \
145 --with-gxx-include-dir=$(TOOLS_DIR)/$(CROSSTARGET)/include/c++/$(VER)
152 ifeq "$(BUILD_ARCH)" "armv7hl"
157 ifeq "$(BUILD_ARCH)" "armv5tel"
160 --disable-sjlj-exceptions
163 ifeq "$(BUILD_ARCH)" "i586"
171 --with-bugurl=http://bugtracker.ipfire.org \
172 --disable-libunwind-exceptions \
173 --enable-gnu-unique-object
175 export XCFLAGS = $(CFLAGS)
176 export TCFLAGS = $(CFLAGS)
178 ###############################################################################
180 ###############################################################################
182 objects = $(DL_FILE) \
183 gmp-$(GMP_VER).tar.xz \
184 mpfr-$(MPFR_VER).tar.xz \
185 mpc-$(MPC_VER).tar.gz
187 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
188 gmp-$(GMP_VER).tar.xz = $(DL_FROM)/gmp-$(GMP_VER).tar.xz
189 mpfr-$(MPFR_VER).tar.xz = $(DL_FROM)/mpfr-$(MPFR_VER).tar.xz
190 mpc-$(MPC_VER).tar.gz = $(DL_FROM)/mpc-$(MPC_VER).tar.gz
192 $(DL_FILE)_MD5 = be2da21680f27624f3a87055c4ba5af2
193 gmp-$(GMP_VER).tar.xz_MD5 = f58fa8001d60c4c77595fbbb62b63c1d
194 mpfr-$(MPFR_VER).tar.xz_MD5 = 51bfdbf81553966c8d43808122cc81b3
195 mpc-$(MPC_VER).tar.gz_MD5 = d6a1d5f8ddea3abd2cc3e98f58352d26
199 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
201 download :$(patsubst %,$(DIR_DL)/%,$(objects))
203 md5 : $(subst %,%_MD5,$(objects))
205 ###############################################################################
206 # Downloading, checking, md5sum
207 ###############################################################################
209 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
212 $(patsubst %,$(DIR_DL)/%,$(objects)) :
215 $(subst %,%_MD5,$(objects)) :
218 ###############################################################################
219 # Installation Details
220 ###############################################################################
222 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
224 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
225 @mkdir $(DIR_SRC)/gcc-build
227 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/gcc-7-glibc-2.28-ustat.patch
229 cd $(DIR_APP) && sed -i 's/install_to_$$(INSTALL_DEST) //' libiberty/Makefile.in
230 cd $(DIR_APP) && sed -i gcc/Makefile.in \
231 -e 's@\./fixinc\.sh@-c true@' \
232 -e 's/^T_CFLAGS =$$/& -fomit-frame-pointer/'
234 ifeq "$(TOOLCHAIN)" "1"
235 # Build gmp and mpfr internally in toolchain.
236 cd $(DIR_APP) && tar xfa $(DIR_DL)/gmp-$(GMP_VER).tar.xz
237 cd $(DIR_APP) && mv -v gmp-$(GMP_VER) gmp
238 cd $(DIR_APP) && tar xfa $(DIR_DL)/mpfr-$(MPFR_VER).tar.xz
239 cd $(DIR_APP) && mv -v mpfr-$(MPFR_VER) mpfr
240 cd $(DIR_APP) && tar xfa $(DIR_DL)/mpc-$(MPC_VER).tar.gz
241 cd $(DIR_APP) && mv -v mpc-$(MPC_VER) mpc
244 cd $(DIR_APP) && cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
245 `dirname $$($(TOOLS_DIR)/bin/$(CROSSTARGET)-gcc -print-libgcc-file-name)`/include-fixed/limits.h
248 for file in $$(find $(DIR_APP)/gcc/config -name linux64.h -o -name linux.h \
249 -o -name sysv4.h -o -name linux-eabi.h -o -name linux-elf.h -o -name aarch64-linux.h); do \
250 echo "Processing $${file}..."; \
252 -e 's@/lib\(64\)\?\(32\)\?/ld@$(TOOLS_DIR)&@g' \
253 -e 's@/usr@$(TOOLS_DIR)@g'; \
254 echo '#undef STANDARD_STARTFILE_PREFIX_1' >> $${file}; \
255 echo '#undef STANDARD_STARTFILE_PREFIX_2' >> $${file}; \
256 echo '#define STANDARD_STARTFILE_PREFIX_1 "$(TOOLS_DIR)/lib/"' >> $${file}; \
257 echo '#define STANDARD_STARTFILE_PREFIX_2 ""' >> $${file}; \
263 cd $(DIR_SRC)/gcc-build && \
265 $(DIR_APP)/libstdc++-v3/configure \
267 cd $(DIR_SRC)/gcc-build && make $(EXTRA_MAKE)
268 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
272 cd $(DIR_SRC)/gcc-build && \
274 $(DIR_APP)/configure \
276 cd $(DIR_SRC)/gcc-build && make $(EXTRA_MAKE)
277 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
280 ifeq "$(TOOLCHAIN)" "1"
282 ln -svf libgcc.a $$($(TOOLS_DIR)/bin/$(CROSSTARGET)-gcc -print-libgcc-file-name | sed 's/libgcc/&_eh/')
286 ln -svf gcc $(TOOLS_DIR)/bin/cc
287 # remove gdb python files from libdir
288 rm -rf $(TOOLS_DIR)/lib/*-gdb.py
292 # Workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70936
293 sed -e "s/^#include_next/#include/" -i $(TOOLS_DIR)/$(CROSSTARGET)/include/c++/$(VER)/cstdlib
297 ln -svf ../usr/bin/cpp /lib
298 ln -svf gcc /usr/bin/cc
299 # remove gdb python files from libdir
300 rm -rf /usr/lib/*-gdb.py
303 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build