Don't install libgcc to root_dir
[openwrt/openwrt.git] / openwrt / toolchain / gcc / gcc-uclibc-3.x.mk
1 # Makefile for to build a gcc/uClibc toolchain
2 #
3 # Copyright (C) 2002-2003 Erik Andersen <andersen@uclibc.org>
4 # Copyright (C) 2004 Manuel Novoa III <mjn3@uclibc.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 2 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 GNU
14 # 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, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
20 GCC_VERSION:=$(strip $(GCC_VERSION))
21
22 #GCC_SITE:=ftp://ftp.gnu.org/gnu/gcc/releases/gcc-$(GCC_VERSION)
23 GCC_SITE:=http://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-$(GCC_VERSION)
24
25 #
26 # snapshots....
27 #GCC_VERSION:=3.3-20031013
28 #GCC_SITE:=http://gcc.get-software.com/snapshots/$(GCC_VERSION)
29 #
30 GCC_SOURCE:=gcc-$(GCC_VERSION).tar.bz2
31 GCC_DIR:=$(TOOL_BUILD_DIR)/gcc-$(GCC_VERSION)
32 GCC_CAT:=bzcat
33 GCC_STRIP_HOST_BINARIES:=true
34
35 #############################################################
36 #
37 # Setup some initial stuff
38 #
39 #############################################################
40
41 ifeq ($(BR2_INSTALL_LIBGCJ),y)
42 TARGET_LANGUAGES:=c,c++,java
43 else
44 ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
45 TARGET_LANGUAGES:=c,c++
46 else
47 TARGET_LANGUAGES:=c
48 endif
49 endif
50
51 #############################################################
52 #
53 # build the first pass gcc compiler
54 #
55 #############################################################
56 GCC_BUILD_DIR1:=$(TOOL_BUILD_DIR)/gcc-$(GCC_VERSION)-initial
57
58 $(DL_DIR)/$(GCC_SOURCE):
59 mkdir -p $(DL_DIR)
60 $(SCRIPT_DIR)/download.pl $(DL_DIR) $(GCC_SOURCE) x $(GCC_SITE)
61
62 $(GCC_DIR)/.unpacked: $(DL_DIR)/$(GCC_SOURCE)
63 mkdir -p $(TOOL_BUILD_DIR)
64 $(GCC_CAT) $(DL_DIR)/$(GCC_SOURCE) | tar -C $(TOOL_BUILD_DIR) $(TAR_OPTIONS) -
65 touch $(GCC_DIR)/.unpacked
66
67 $(GCC_DIR)/.patched: $(GCC_DIR)/.unpacked
68 # Apply any files named gcc-*.patch from the source directory to gcc
69 $(SCRIPT_DIR)/patch-kernel.sh $(GCC_DIR) ./$(GCC_VERSION) \*.patch
70 # Note: The soft float situation has improved considerably with gcc 3.4.x.
71 # We can dispense with the custom spec files, as well as libfloat for the arm case.
72 # However, we still need a patch for arm. There's a similar patch for gcc 3.3.x
73 # which needs to be integrated so we can kill of libfloat for good, except for
74 # anyone (?) who might still be using gcc 2.95. mjn3
75 ifeq ($(BR2_SOFT_FLOAT),y)
76 ifeq ("$(strip $(ARCH))","arm")
77 $(SCRIPT_DIR)/patch-kernel.sh $(GCC_DIR) ./$(GCC_VERSION) arm-softfloat.patch.conditional
78 endif
79 ifeq ("$(strip $(ARCH))","armeb")
80 $(SCRIPT_DIR)/patch-kernel.sh $(GCC_DIR) ./$(GCC_VERSION) arm-softfloat.patch.conditional
81 endif
82 # Not yet updated to 3.4.1.
83 #ifeq ("$(strip $(ARCH))","i386")
84 #toolchain/patch-kernel.sh $(GCC_DIR) toolchain/gcc i386-gcc-soft-float.patch
85 #endif
86 endif
87 touch $(GCC_DIR)/.patched
88
89 # The --without-headers option stopped working with gcc 3.0 and has never been
90 # # fixed, so we need to actually have working C library header files prior to
91 # # the step or libgcc will not build...
92
93 $(GCC_BUILD_DIR1)/.configured: $(GCC_DIR)/.patched
94 mkdir -p $(GCC_BUILD_DIR1)
95 (cd $(GCC_BUILD_DIR1); PATH=$(TARGET_PATH) \
96 $(GCC_DIR)/configure \
97 --prefix=$(STAGING_DIR) \
98 --build=$(GNU_HOST_NAME) \
99 --host=$(GNU_HOST_NAME) \
100 --target=$(REAL_GNU_TARGET_NAME) \
101 --enable-languages=c \
102 --disable-shared \
103 --with-sysroot=$(TOOL_BUILD_DIR)/uClibc_dev/ \
104 --disable-__cxa_atexit \
105 --enable-target-optspace \
106 --with-gnu-ld \
107 $(DISABLE_NLS) \
108 $(MULTILIB) \
109 $(SOFT_FLOAT_CONFIG_OPTION) \
110 $(GCC_WITH_CPU) $(GCC_WITH_ARCH) $(GCC_WITH_TUNE) \
111 $(EXTRA_GCC_CONFIG_OPTIONS));
112 touch $(GCC_BUILD_DIR1)/.configured
113
114 $(GCC_BUILD_DIR1)/.compiled: $(GCC_BUILD_DIR1)/.configured
115 PATH=$(TARGET_PATH) $(MAKE) -C $(GCC_BUILD_DIR1) all-gcc
116 touch $(GCC_BUILD_DIR1)/.compiled
117
118 $(STAGING_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gcc: $(GCC_BUILD_DIR1)/.compiled
119 PATH=$(TARGET_PATH) $(MAKE) -C $(GCC_BUILD_DIR1) install-gcc
120 #rm -f $(STAGING_DIR)/bin/gccbug $(STAGING_DIR)/bin/gcov
121 #rm -rf $(STAGING_DIR)/info $(STAGING_DIR)/man $(STAGING_DIR)/share/doc $(STAGING_DIR)/share/locale
122
123 gcc_initial: $(STAGING_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gcc
124
125 gcc_initial-clean:
126 rm -rf $(GCC_BUILD_DIR1)
127
128 gcc_initial-toolclean:
129 rm -rf $(GCC_BUILD_DIR1)
130
131 #############################################################
132 #
133 # second pass compiler build. Build the compiler targeting
134 # the newly built shared uClibc library.
135 #
136 #############################################################
137 #
138 # Sigh... I had to rework things because using --with-gxx-include-dir
139 # causes issues with include dir search order for g++. This seems to
140 # have something to do with "path translations" and possibly doesn't
141 # affect gcc-target. However, I haven't tested gcc-target yet so no
142 # guarantees. mjn3
143
144 GCC_BUILD_DIR2:=$(TOOL_BUILD_DIR)/gcc-$(GCC_VERSION)-final
145 $(GCC_BUILD_DIR2)/.configured: $(GCC_DIR)/.patched $(STAGING_DIR)/lib/libc.a
146 mkdir -p $(GCC_BUILD_DIR2)
147 # Important! Required for limits.h to be fixed.
148 ln -sf ../include $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/sys-include
149 (cd $(GCC_BUILD_DIR2); PATH=$(TARGET_PATH) \
150 $(GCC_DIR)/configure \
151 --prefix=$(STAGING_DIR) \
152 --build=$(GNU_HOST_NAME) \
153 --host=$(GNU_HOST_NAME) \
154 --target=$(REAL_GNU_TARGET_NAME) \
155 --enable-languages=$(TARGET_LANGUAGES) \
156 --enable-shared \
157 --disable-__cxa_atexit \
158 --enable-target-optspace \
159 --with-gnu-ld \
160 $(DISABLE_NLS) \
161 $(MULTILIB) \
162 $(SOFT_FLOAT_CONFIG_OPTION) \
163 $(GCC_WITH_CPU) $(GCC_WITH_ARCH) $(GCC_WITH_TUNE) \
164 $(GCC_USE_SJLJ_EXCEPTIONS) \
165 $(EXTRA_GCC_CONFIG_OPTIONS));
166 touch $(GCC_BUILD_DIR2)/.configured
167
168 $(GCC_BUILD_DIR2)/.compiled: $(GCC_BUILD_DIR2)/.configured
169 PATH=$(TARGET_PATH) $(MAKE) -C $(GCC_BUILD_DIR2) all
170 touch $(GCC_BUILD_DIR2)/.compiled
171
172 gcc-install: $(GCC_BUILD_DIR2)/.compiled
173 PATH=$(TARGET_PATH) $(MAKE) -C $(GCC_BUILD_DIR2) install
174 # Strip the host binaries
175 ifeq ($(GCC_STRIP_HOST_BINARIES),true)
176 -strip --strip-all -R .note -R .comment $(STAGING_DIR)/bin/*
177 endif
178 # Set up the symlinks to enable lying about target name.
179 set -e; \
180 (cd $(STAGING_DIR); \
181 ln -sf $(REAL_GNU_TARGET_NAME) $(GNU_TARGET_NAME); \
182 cd bin; \
183 for app in $(REAL_GNU_TARGET_NAME)-* ; do \
184 ln -sf $${app} \
185 $(GNU_TARGET_NAME)$${app##$(REAL_GNU_TARGET_NAME)}; \
186 done; \
187 );
188 #
189 # Now for the ugly 3.3.x soft float hack...
190 #
191 ifeq ($(BR2_SOFT_FLOAT),y)
192 ifeq ($(findstring 3.3.,$(GCC_VERSION)),3.3.)
193 # Make sure we have a soft float specs file for this arch
194 if [ ! -f ./$(GCC_VERSION)/specs-$(ARCH)-soft-float ] ; then \
195 echo soft float configured but no specs file for this arch ; \
196 /bin/false ; \
197 fi;
198 # Replace specs file with one that defaults to soft float mode.
199 if [ ! -f $(STAGING_DIR)/lib/gcc-lib/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)/specs ] ; then \
200 echo staging dir specs file is missing ; \
201 /bin/false ; \
202 fi;
203 cp ./$(GCC_VERSION)/specs-$(ARCH)-soft-float $(STAGING_DIR)/lib/gcc-lib/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)/specs
204 endif
205 endif
206
207 gcc: gcc_initial $(LIBFLOAT_TARGET) \
208 gcc-install $(GCC_TARGETS)
209
210 gcc-source: $(DL_DIR)/$(GCC_SOURCE)
211
212 gcc-clean:
213 rm -rf $(GCC_DIR)
214 rm -rf $(GCC_BUILD_DIR2)
215 rm -f $(STAGING_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gc*
216 rm -f $(STAGING_DIR)/bin/$(REAL_GNU_TARGET_NAME)-c*
217
218 gcc-toolclean:
219 rm -rf $(GCC_BUILD_DIR2)
220
221 #############################################################
222 #
223 # Next build target gcc compiler
224 #
225 #############################################################
226 GCC_BUILD_DIR3:=$(BUILD_DIR)/gcc-$(GCC_VERSION)-target
227
228 $(GCC_BUILD_DIR3)/.configured: gcc-install
229 mkdir -p $(GCC_BUILD_DIR3)
230 (cd $(GCC_BUILD_DIR3); PATH=$(TARGET_PATH) \
231 $(GCC_DIR)/configure \
232 --prefix=/usr \
233 --build=$(GNU_HOST_NAME) \
234 --host=$(REAL_GNU_TARGET_NAME) \
235 --target=$(REAL_GNU_TARGET_NAME) \
236 --enable-languages=$(TARGET_LANGUAGES) \
237 --enable-shared \
238 --with-gxx-include-dir=/usr/include/c++ \
239 --disable-__cxa_atexit \
240 --enable-target-optspace \
241 --with-gnu-ld \
242 $(DISABLE_NLS) \
243 $(MULTILIB) \
244 $(SOFT_FLOAT_CONFIG_OPTION) \
245 $(GCC_WITH_CPU) $(GCC_WITH_ARCH) $(GCC_WITH_TUNE) \
246 $(GCC_USE_SJLJ_EXCEPTIONS) \
247 $(EXTRA_GCC_CONFIG_OPTIONS));
248 touch $(GCC_BUILD_DIR3)/.configured
249
250 $(GCC_BUILD_DIR3)/.compiled: $(GCC_BUILD_DIR3)/.configured
251 PATH=$(TARGET_PATH) \
252 $(MAKE) $(TARGET_GCC_ARGS) -C $(GCC_BUILD_DIR3) all
253 touch $(GCC_BUILD_DIR3)/.compiled
254
255 #
256 # gcc-lib dir changes names to gcc with 3.4.mumble
257 #
258 ifeq ($(findstring 3.4.,$(GCC_VERSION)),3.4.)
259 GCC_LIB_SUBDIR=lib/gcc/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)
260 else
261 GCC_LIB_SUBDIR=lib/gcc-lib/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)
262 endif
263
264 $(TARGET_DIR)/usr/bin/gcc: $(GCC_BUILD_DIR3)/.compiled
265 PATH=$(TARGET_PATH) \
266 $(MAKE) DESTDIR=$(TARGET_DIR) -C $(GCC_BUILD_DIR3) install
267 # Remove broken specs file (cross compile flag is set).
268 rm -f $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR)/specs
269 #
270 # Now for the ugly 3.3.x soft float hack...
271 #
272 ifeq ($(BR2_SOFT_FLOAT),y)
273 ifeq ($(findstring 3.3.,$(GCC_VERSION)),3.3.)
274 # Add a specs file that defaults to soft float mode.
275 cp ./$(GCC_VERSION)/specs-$(ARCH)-soft-float $(TARGET_DIR)/usr/lib/gcc-lib/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)/specs
276 # Make sure gcc does not think we are cross compiling
277 $(SED) "s/^1/0/;" $(TARGET_DIR)/usr/lib/gcc-lib/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)/specs
278 endif
279 endif
280 #
281 # Ok... that's enough of that.
282 #
283 -(cd $(TARGET_DIR)/bin; find -type f | xargs $(STRIP) > /dev/null 2>&1)
284 -(cd $(TARGET_DIR)/usr/bin; find -type f | xargs $(STRIP) > /dev/null 2>&1)
285 -(cd $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR); $(STRIP) cc1 cc1plus collect2 > /dev/null 2>&1)
286 -(cd $(TARGET_DIR)/usr/lib; $(STRIP) libstdc++.so.*.*.* > /dev/null 2>&1)
287 -(cd $(TARGET_DIR)/lib; $(STRIP) libgcc_s.so.*.*.* > /dev/null 2>&1)
288 #
289 rm -f $(TARGET_DIR)/usr/lib/*.la*
290 #rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
291 # $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
292 # Work around problem of missing syslimits.h
293 @if [ ! -f $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR)/include/syslimits.h ] ; then \
294 echo "warning: working around missing syslimits.h" ; \
295 cp -f $(STAGING_DIR)/$(GCC_LIB_SUBDIR)/include/syslimits.h \
296 $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR)/include/ ; \
297 fi
298 # These are in /lib, so...
299 #rm -rf $(TARGET_DIR)/usr/lib/libgcc_s.so*
300 #touch -c $(TARGET_DIR)/usr/bin/gcc
301
302 gcc_target: uclibc_target binutils_target $(TARGET_DIR)/usr/bin/gcc
303
304 gcc_target-clean:
305 rm -rf $(GCC_BUILD_DIR3)
306 rm -f $(TARGET_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)*
307
308 gcc_target-toolclean:
309 rm -rf $(GCC_BUILD_DIR3)
310