make gcc compile install libgcc_s by default, remove package/libgcc/
[openwrt.git] / 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         # These are in /lib, so...
207         cp -a $(STAGING_DIR)/$(REAL_GNU_TARGET_NAME)/lib/libgcc_s* $(TARGET_DIR)/lib/
208         $(STRIP) $(TARGET_DIR)/lib/libgcc_s.so.1
209
210 gcc: gcc_initial $(LIBFLOAT_TARGET) \
211         gcc-install $(GCC_TARGETS)
212
213 gcc-source: $(DL_DIR)/$(GCC_SOURCE)
214
215 gcc-clean:
216         rm -rf $(GCC_DIR)
217         rm -rf $(GCC_BUILD_DIR2)
218         rm -f $(STAGING_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gc*
219         rm -f $(STAGING_DIR)/bin/$(REAL_GNU_TARGET_NAME)-c*
220
221 gcc-toolclean:
222         rm -rf $(GCC_BUILD_DIR2)
223
224 #############################################################
225 #
226 # Next build target gcc compiler
227 #
228 #############################################################
229 GCC_BUILD_DIR3:=$(BUILD_DIR)/gcc-$(GCC_VERSION)-target
230
231 $(GCC_BUILD_DIR3)/.configured: gcc-install
232         mkdir -p $(GCC_BUILD_DIR3)
233         (cd $(GCC_BUILD_DIR3); PATH=$(TARGET_PATH) \
234                 $(GCC_DIR)/configure \
235                 --prefix=/usr \
236                 --build=$(GNU_HOST_NAME) \
237                 --host=$(REAL_GNU_TARGET_NAME) \
238                 --target=$(REAL_GNU_TARGET_NAME) \
239                 --enable-languages=$(TARGET_LANGUAGES) \
240                 --enable-shared \
241                 --with-gxx-include-dir=/usr/include/c++ \
242                 --disable-__cxa_atexit \
243                 --enable-target-optspace \
244                 --with-gnu-ld \
245                 $(DISABLE_NLS) \
246                 $(MULTILIB) \
247                 $(SOFT_FLOAT_CONFIG_OPTION) \
248                 $(GCC_WITH_CPU) $(GCC_WITH_ARCH) $(GCC_WITH_TUNE) \
249                 $(GCC_USE_SJLJ_EXCEPTIONS) \
250                 $(EXTRA_GCC_CONFIG_OPTIONS));
251         touch $(GCC_BUILD_DIR3)/.configured
252
253 $(GCC_BUILD_DIR3)/.compiled: $(GCC_BUILD_DIR3)/.configured
254         PATH=$(TARGET_PATH) \
255         $(MAKE) $(TARGET_GCC_ARGS) -C $(GCC_BUILD_DIR3) all
256         touch $(GCC_BUILD_DIR3)/.compiled
257
258 #
259 # gcc-lib dir changes names to gcc with 3.4.mumble
260 #
261 ifeq ($(findstring 3.4.,$(GCC_VERSION)),3.4.)
262 GCC_LIB_SUBDIR=lib/gcc/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)
263 else
264 GCC_LIB_SUBDIR=lib/gcc-lib/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)
265 endif
266
267 $(TARGET_DIR)/usr/bin/gcc: $(GCC_BUILD_DIR3)/.compiled
268         PATH=$(TARGET_PATH) \
269         $(MAKE) DESTDIR=$(TARGET_DIR) -C $(GCC_BUILD_DIR3) install
270         # Remove broken specs file (cross compile flag is set).
271         rm -f $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR)/specs
272         #
273         # Now for the ugly 3.3.x soft float hack...
274         #
275 ifeq ($(BR2_SOFT_FLOAT),y)
276 ifeq ($(findstring 3.3.,$(GCC_VERSION)),3.3.)
277         # Add a specs file that defaults to soft float mode.
278         cp ./$(GCC_VERSION)/specs-$(ARCH)-soft-float $(TARGET_DIR)/usr/lib/gcc-lib/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)/specs
279         # Make sure gcc does not think we are cross compiling
280         $(SED) "s/^1/0/;" $(TARGET_DIR)/usr/lib/gcc-lib/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)/specs
281 endif
282 endif
283         #
284         # Ok... that's enough of that.
285         #
286         -(cd $(TARGET_DIR)/bin; find -type f | xargs $(STRIP) > /dev/null 2>&1)
287         -(cd $(TARGET_DIR)/usr/bin; find -type f | xargs $(STRIP) > /dev/null 2>&1)
288         -(cd $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR); $(STRIP) cc1 cc1plus collect2 > /dev/null 2>&1)
289         -(cd $(TARGET_DIR)/usr/lib; $(STRIP) libstdc++.so.*.*.* > /dev/null 2>&1)
290         -(cd $(TARGET_DIR)/lib; $(STRIP) libgcc_s.so.*.*.* > /dev/null 2>&1)
291         #
292         rm -f $(TARGET_DIR)/usr/lib/*.la*
293         #rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \
294         #       $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
295         # Work around problem of missing syslimits.h
296         @if [ ! -f $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR)/include/syslimits.h ] ; then \
297                 echo "warning: working around missing syslimits.h" ; \
298                 cp -f $(STAGING_DIR)/$(GCC_LIB_SUBDIR)/include/syslimits.h \
299                         $(TARGET_DIR)/usr/$(GCC_LIB_SUBDIR)/include/ ; \
300         fi
301         # These are in /lib, so...
302         #rm -rf $(TARGET_DIR)/usr/lib/libgcc_s.so*
303         #touch -c $(TARGET_DIR)/usr/bin/gcc
304
305 gcc_target: uclibc_target binutils_target $(TARGET_DIR)/usr/bin/gcc
306
307 gcc_target-clean:
308         rm -rf $(GCC_BUILD_DIR3)
309         rm -f $(TARGET_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)*
310
311 gcc_target-toolclean:
312         rm -rf $(GCC_BUILD_DIR3)
313