]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/gcc
Merge branch 'next' into arm-port
[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.1.2
28
29 THISAPP = gcc-$(VER)
30 DL_FILE = $(THISAPP).tar.bz2
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 # Normal build or /tools build.
35 #
36 ifeq "$(ROOT)" ""
37 TARGET = $(DIR_INFO)/$(THISAPP)
38 EXTRA_CONFIG = --prefix=/usr \
39 --libexecdir=/usr/lib \
40 --enable-shared \
41 --enable-threads=posix \
42 --enable-__cxa_atexit \
43 --enable-clocale=gnu \
44 --enable-languages=c,c++ \
45 --disable-nls
46 EXTRA_MAKE =
47 EXTRA_INSTALL =
48 else
49 ifeq "$(PASS)" "1"
50 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
51 EXTRA_CONFIG = --prefix=/tools \
52 --with-local-prefix=/tools \
53 --disable-nls \
54 --enable-shared \
55 --enable-languages=c \
56 --disable-bootstrap
57 EXTRA_MAKE =
58 EXTRA_INSTALL =
59 else
60 TARGET = $(DIR_INFO)/$(THISAPP)-tools2
61 EXTRA_CONFIG = --prefix=/tools \
62 --with-local-prefix=/tools \
63 --enable-clocale=gnu \
64 --enable-shared \
65 --enable-threads=posix \
66 --enable-__cxa_atexit \
67 --enable-languages=c,c++ \
68 --disable-libstdcxx-pch
69 EXTRA_MAKE =
70 EXTRA_INSTALL =
71 endif
72 endif
73
74 ifeq "$(MACHINE_TYPE)" "arm"
75 EXTRA_CONFIG += \
76 --build=$(BUILDTARGET) \
77 --host=$(BUILDTARGET) \
78 --target=$(BUILDTARGET) \
79 --with-float=soft \
80 --disable-libmudflap \
81 --disable-libssp \
82 --disable-libgomp \
83 --enable-threads=posix \
84 --enable-long-long \
85 --enable-c99 \
86 --enable-__cxa_atexit \
87 --disable-multilib
88 else
89 EXTRA_CONFIG += --build=$(BUILDTARGET) --host=$(BUILDTARGET) \
90 --target=$(BUILDTARGET)
91 endif
92
93 export XCFLAGS = $(CFLAGS)
94 export TCFLAGS = $(CFLAGS)
95
96 ###############################################################################
97 # Top-level Rules
98 ###############################################################################
99 objects = $(DL_FILE)
100
101 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
102
103 $(DL_FILE)_MD5 = a4a3eb15c96030906d8494959eeda23c
104
105 install : $(TARGET)
106
107 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
108
109 download :$(patsubst %,$(DIR_DL)/%,$(objects))
110
111 md5 : $(subst %,%_MD5,$(objects))
112
113 ###############################################################################
114 # Downloading, checking, md5sum
115 ###############################################################################
116
117 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
118 @$(CHECK)
119
120 $(patsubst %,$(DIR_DL)/%,$(objects)) :
121 @$(LOAD)
122
123 $(subst %,%_MD5,$(objects)) :
124 @$(MD5)
125
126 ###############################################################################
127 # Installation Details
128 ###############################################################################
129
130 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
131 @$(PREBUILD)
132 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
133 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-fix_linker_version_detection.patch
134 @mkdir $(DIR_SRC)/gcc-build
135
136 cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/gcc-4.1.2-gcc_eh.patch
137 cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/gcc-4.1.2-arm-linux-soft-float.patch
138
139 ifeq "$(ROOT)" ""
140 cd $(DIR_APP) && sed -i 's/install_to_$$(INSTALL_DEST) //' libiberty/Makefile.in
141 cd $(DIR_APP) && sed -i 's/^XCFLAGS =$$/& -fomit-frame-pointer/' gcc/Makefile.in
142 cd $(DIR_APP) && sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
143 cd $(DIR_APP) && sed -i 's/@have_mktemp_command@/yes/' gcc/gccbug.in
144
145 cd $(DIR_SRC)/gcc-build && $(DIR_APP)/configure $(EXTRA_CONFIG)
146 cd $(DIR_SRC)/gcc-build && make $(MAKETUNING) $(EXTRA_MAKE)
147 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
148 ln -sfv ../usr/bin/cpp /lib
149 ln -sfv gcc /usr/bin/cc
150 else
151 ifeq "$(PASS)" "1"
152 cd $(DIR_SRC)/gcc-build && $(DIR_APP)/configure $(EXTRA_CONFIG)
153 cd $(DIR_SRC)/gcc-build && make $(MAKETUNING) $(EXTRA_MAKE)
154 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
155 ln -sfv gcc /tools/bin/cc
156 ln -sf ccache $(ROOT)/usr/local/bin/$(BUILDTARGET)-gcc
157 ln -sf ccache $(ROOT)/usr/local/bin/$(BUILDTARGET)-g++
158 ln -sf ccache $(ROOT)/usr/local/bin/$(BUILDTARGET)-cc
159 else
160 cd $(DIR_APP) && cp -v gcc/Makefile.in{,.orig}
161 cd $(DIR_APP) && sed 's@\./fixinc\.sh@-c true@' gcc/Makefile.in.orig > gcc/Makefile.in
162 cd $(DIR_APP) && cp -v gcc/Makefile.in{,.tmp}
163 cd $(DIR_APP) && sed 's/^XCFLAGS =$\/& -fomit-frame-pointer/' gcc/Makefile.in.tmp \
164 > gcc/Makefile.in
165 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-specs-1.patch
166 cd $(DIR_SRC)/gcc-build && $(DIR_APP)/configure $(EXTRA_CONFIG)
167 cd $(DIR_SRC)/gcc-build && make $(MAKETUNING) $(EXTRA_MAKE)
168 cd $(DIR_SRC)/gcc-build && make $(EXTRA_INSTALL) install
169 endif
170 endif
171 @rm -rf $(DIR_APP) $(DIR_SRC)/gcc-build
172 @$(POSTBUILD)