]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/gcc
gcc: Build package for stage2.
[ipfire-2.x.git] / lfs / gcc
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2011 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.4.7
28
29 GMP_VER = 5.0.5
30 MPFR_VER = 2.4.2
31
32 THISAPP = gcc-$(VER)
33 DL_FILE = $(THISAPP).tar.bz2
34 DL_FROM = $(URL_IPFIRE)
35 DIR_APP = $(DIR_SRC)/$(THISAPP)
36
37 # Normal build or /tools build.
38 #
39 ifeq "$(ROOT)" ""
40 TARGET = $(DIR_INFO)/$(THISAPP)
41 EXTRA_CONFIG = \
42 --prefix=/usr \
43 --libexecdir=/usr/lib \
44 --enable-shared \
45 --enable-threads=posix \
46 --enable-__cxa_atexit \
47 --enable-clocale=gnu \
48 --enable-languages=c,c++ \
49 --disable-bootstrap \
50 --disable-nls
51 EXTRA_MAKE =
52 EXTRA_INSTALL =
53 else
54 ifeq "$(PASS)" "1"
55 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
56 EXTRA_CONFIG = \
57 --target=$(CROSSTARGET) \
58 --prefix=/tools \
59 --disable-nls \
60 --disable-shared \
61 --disable-decimal-float \
62 --disable-threads \
63 --disable-libmudflap \
64 --disable-libssp \
65 --disable-libgomp \
66 --disable-libquadmath \
67 --with-newlib \
68 --without-headers \
69 --without-ppl \
70 --without-cloog \
71 --enable-languages=c
72 EXTRA_MAKE =
73 EXTRA_INSTALL =
74 else
75 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
76 EXTRA_ENV = \
77 CC="$(CROSSTARGET)-gcc -B/tools/lib/" \
78 AR="$(CROSSTARGET)-ar" \
79 RANLIB="$(CROSSTARGET)-ranlib"
80 EXTRA_CONFIG = \
81 --host=$(BUILDTARGET) \
82 --build=$(BUILDTARGET) \
83 --target=$(BUILDTARGET) \
84 --prefix=/tools \
85 --with-local-prefix=/tools \
86 --enable-clocale=gnu \
87 --enable-shared \
88 --enable-threads=posix \
89 --enable-__cxa_atexit \
90 --enable-languages=c,c++ \
91 --disable-libstdcxx-pch \
92 --disable-bootstrap
93 EXTRA_MAKE =
94 EXTRA_INSTALL =
95 endif
96 endif
97
98 ifeq "$(MACHINE_TYPE)" "arm"
99 EXTRA_CONFIG += \
100 --with-float=soft \
101 --disable-sjlj-exceptions
102 endif
103
104 export XCFLAGS = $(CFLAGS)
105 export TCFLAGS = $(CFLAGS)
106
107 ###############################################################################
108 # Top-level Rules
109 ###############################################################################
110
111 objects = $(DL_FILE) \
112 gmp-$(GMP_VER).tar.bz2 \
113 mpfr-$(MPFR_VER).tar.bz2
114
115 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
116 gmp-$(GMP_VER).tar.bz2 = $(DL_FROM)/gmp-$(GMP_VER).tar.bz2
117 mpfr-$(MPFR_VER).tar.bz2 = $(DL_FROM)/mpfr-$(MPFR_VER).tar.bz2
118
119 $(DL_FILE)_MD5 = 295709feb4441b04e87dea3f1bab4281
120 gmp-$(GMP_VER).tar.bz2_MD5 = 041487d25e9c230b0c42b106361055fe
121 mpfr-$(MPFR_VER).tar.bz2_MD5 = 89e59fe665e2b3ad44a6789f40b059a0
122
123 install : $(TARGET)
124
125 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
126
127 download :$(patsubst %,$(DIR_DL)/%,$(objects))
128
129 md5 : $(subst %,%_MD5,$(objects))
130
131 ###############################################################################
132 # Downloading, checking, md5sum
133 ###############################################################################
134
135 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
136 @$(CHECK)
137
138 $(patsubst %,$(DIR_DL)/%,$(objects)) :
139 @$(LOAD)
140
141 $(subst %,%_MD5,$(objects)) :
142 @$(MD5)
143
144 ###############################################################################
145 # Installation Details
146 ###############################################################################
147
148 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
149 @$(PREBUILD)
150 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
151 @mkdir $(DIR_SRC)/gcc-build
152
153 ifneq "$(ROOT)" ""
154 # Build gmp and mpfr internally in toolchain.
155 cd $(DIR_APP) && tar xfa $(DIR_DL)/gmp-$(GMP_VER).tar.bz2
156 cd $(DIR_APP) && mv -v gmp-$(GMP_VER) gmp
157 cd $(DIR_APP) && tar xfa $(DIR_DL)/mpfr-$(MPFR_VER).tar.bz2
158 cd $(DIR_APP) && mv -v mpfr-$(MPFR_VER) mpfr
159
160 ifeq "$(PASS)" "1"
161 # GCC does not detect stack protection correctly, which causes problems
162 # for the build of libresolv_pic.a.
163 cd $(DIR_APP) && sed -i '/k prot/agcc_cv_libc_provides_ssp=yes' gcc/configure
164 endif
165
166 ifeq "$(PASS)" "2"
167 cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/gcc-4.4.3-startfiles_fix-1.patch
168
169 for file in $$(find $(DIR_APP)/gcc/config -name linux64.h -o -name linux.h \
170 -o -name sysv4.h -o -name linux-eabi.h -o -name linux-elf.h); do \
171 echo "Processing $${file}..."; \
172 sed -i $${file} \
173 -e 's@/lib\(64\)\?\(32\)\?/ld@/tools&@g' \
174 -e 's@/usr@/tools@g'; \
175 echo '#undef STANDARD_INCLUDE_DIR' >> $${file}; \
176 echo '#define STANDARD_INCLUDE_DIR 0' >> $${file}; \
177 echo '#define STANDARD_STARTFILE_PREFIX_1 ""' >> $${file}; \
178 echo '#define STANDARD_STARTFILE_PREFIX_2 ""' >> $${file}; \
179 done
180 endif
181 endif
182
183 cd $(DIR_APP) && sed -i 's/install_to_$$(INSTALL_DEST) //' libiberty/Makefile.in
184 cd $(DIR_APP) && sed -i gcc/Makefile.in \
185 -e 's@\./fixinc\.sh@-c true@' \
186 -e 's/^T_CFLAGS =$$/& -fomit-frame-pointer/'
187
188 # The actual build.
189 cd $(DIR_SRC)/gcc-build && \
190 $(EXTRA_ENV) \
191 $(DIR_APP)/configure \
192 $(EXTRA_CONFIG)
193 cd $(DIR_SRC)/gcc-build && make $(MAKETUNING) $(EXTRA_MAKE)
194 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
195
196 ifeq "$(ROOT)" ""
197 ln -svf ../usr/bin/cpp /lib
198 else
199 ifeq "$(PASS)" "1"
200 ln -svf libgcc.a $$(/tools/bin/$(CROSSTARGET)-gcc -print-libgcc-file-name | sed 's/libgcc/&_eh/')
201 else
202 ln -svf gcc /tools/bin/cc
203 endif
204 endif
205 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build
206 @$(POSTBUILD)