1 # Makefile for to build a gcc/uClibc toolchain
3 # Copyright (C) 2002-2003 Erik Andersen <andersen@uclibc.org>
4 # Copyright (C) 2004 Manuel Novoa III <mjn3@uclibc.org>
5 # Copyright (C) 2005 Felix Fietkau <openwrt@nbd.name>
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 include $(TOPDIR
)/rules.mk
23 GCC_VERSION
:=$(strip $(subst ",, $(CONFIG_GCC_VERSION)))#"))
25 #GCC_SITE:=ftp://ftp.gnu.org/gnu/gcc/releases/gcc-$(GCC_VERSION)
26 GCC_SITE
:=ftp
://ftp.fu-berlin.de
/unix
/languages
/gcc
/releases
/gcc-
$(GCC_VERSION
) \
27 http
://mirrors.rcn.net
/pub
/sourceware
/gcc
/releases
/gcc-
$(GCC_VERSION
)
29 GCC_SOURCE
:=gcc-
$(GCC_VERSION
).
tar.bz2
30 GCC_DIR
:=$(TOOL_BUILD_DIR
)/gcc-
$(GCC_VERSION
)
33 #############################################################
35 # Setup some initial stuff
37 #############################################################
39 ifeq ($(CONFIG_INSTALL_LIBGCJ
),y
)
40 TARGET_LANGUAGES
:=c
,c
++,java
42 ifeq ($(CONFIG_INSTALL_LIBSTDCPP
),y
)
43 TARGET_LANGUAGES
:=c
,c
++
49 #############################################################
51 # build the first pass gcc compiler
53 #############################################################
55 GCC_BUILD_DIR1
:=$(TOOL_BUILD_DIR
)/gcc-
$(GCC_VERSION
)-initial
57 $(DL_DIR
)/$(GCC_SOURCE
):
59 $(SCRIPT_DIR
)/download.pl
$(DL_DIR
) $(GCC_SOURCE
) x
$(GCC_SITE
)
61 $(GCC_DIR
)/.unpacked
: $(DL_DIR
)/$(GCC_SOURCE
)
62 mkdir
-p
$(TOOL_BUILD_DIR
)
63 $(GCC_CAT
) $(DL_DIR
)/$(GCC_SOURCE
) |
tar -C
$(TOOL_BUILD_DIR
) $(TAR_OPTIONS
) -
64 touch
$(GCC_DIR
)/.unpacked
66 $(GCC_DIR
)/.patched
: $(GCC_DIR
)/.unpacked
67 # Apply any files named gcc-*.patch from the source directory to gcc
68 $(SCRIPT_DIR
)/patch-kernel.sh
$(GCC_DIR
) .
/$(GCC_VERSION
) \
*.patch
69 # Note: The soft float situation has improved considerably with gcc 3.4.x.
70 # We can dispense with the custom spec files, as well as libfloat for the arm case.
71 # However, we still need a patch for arm. There's a similar patch for gcc 3.3.x
72 # which needs to be integrated so we can kill of libfloat for good.
73 $(SED
) 's,\(version_string.. = "[0-9\.]*\).*\(";\),\1 (OpenWrt-2.0)\2,' $(GCC_DIR
)/gcc
/version.c
74 $(SED
) 's,\(bug_report_url.. = "\).*\(";\),\1<URL:https://dev.openwrt.org/>\2,' $(GCC_DIR
)/gcc
/version.c
75 touch
$(GCC_DIR
)/.patched
77 # The --without-headers option stopped working with gcc 3.0 and has never been
78 # # fixed, so we need to actually have working C library header files prior to
79 # # the step or libgcc will not build...
81 $(GCC_BUILD_DIR1
)/.configured
: $(GCC_DIR
)/.patched
82 mkdir
-p
$(GCC_BUILD_DIR1
)
83 (cd
$(GCC_BUILD_DIR1
); rm -f config.cache
; PATH
=$(TARGET_PATH
) \
84 $(GCC_DIR
)/configure \
85 --prefix=$(STAGING_DIR
) \
86 --build
=$(GNU_HOST_NAME
) \
87 --host
=$(GNU_HOST_NAME
) \
88 --target
=$(REAL_GNU_TARGET_NAME
) \
89 --enable-languages
=c \
91 --with-sysroot
=$(TOOL_BUILD_DIR
)/uClibc_dev
/ \
92 --disable-__cxa_atexit \
93 --enable-target-optspace \
98 touch
$(GCC_BUILD_DIR1
)/.configured
100 $(GCC_BUILD_DIR1
)/.compiled
: $(GCC_BUILD_DIR1
)/.configured
101 PATH
=$(TARGET_PATH
) $(MAKE
) -C
$(GCC_BUILD_DIR1
) all-gcc
102 touch
$(GCC_BUILD_DIR1
)/.compiled
104 $(STAGING_DIR
)/bin
/$(REAL_GNU_TARGET_NAME
)-gcc
: $(GCC_BUILD_DIR1
)/.compiled
105 PATH
=$(TARGET_PATH
) $(MAKE
) -C
$(GCC_BUILD_DIR1
) install-gcc
107 #############################################################
109 # second pass compiler build. Build the compiler targeting
110 # the newly built shared uClibc library.
112 #############################################################
114 # Sigh... I had to rework things because using --with-gxx-include-dir
115 # causes issues with include dir search order for g++. This seems to
116 # have something to do with "path translations" and possibly doesn't
117 # affect gcc-target. However, I haven't tested gcc-target yet so no
120 GCC_BUILD_DIR2
:=$(TOOL_BUILD_DIR
)/gcc-
$(GCC_VERSION
)-final
121 $(GCC_BUILD_DIR2
)/.configured
: $(GCC_DIR
)/.patched
$(STAGING_DIR
)/lib
/libc.a
122 mkdir
-p
$(GCC_BUILD_DIR2
)
123 # Important! Required for limits.h to be fixed.
124 rm -rf
$(STAGING_DIR
)/$(REAL_GNU_TARGET_NAME
)/sys-include
125 ln
-sf ..
/include $(STAGING_DIR
)/$(REAL_GNU_TARGET_NAME
)/sys-include
126 rm -rf
$(STAGING_DIR
)/$(REAL_GNU_TARGET_NAME
)/lib
127 ln
-sf ..
/lib
$(STAGING_DIR
)/$(REAL_GNU_TARGET_NAME
)/lib
128 (cd
$(GCC_BUILD_DIR2
); rm -f config.cache
; PATH
=$(TARGET_PATH
) \
129 $(GCC_DIR
)/configure \
130 --prefix=$(STAGING_DIR
) \
131 --build
=$(GNU_HOST_NAME
) \
132 --host
=$(GNU_HOST_NAME
) \
133 --target
=$(REAL_GNU_TARGET_NAME
) \
134 --enable-languages
=$(TARGET_LANGUAGES
) \
136 --disable-__cxa_atexit \
137 --enable-target-optspace \
142 touch
$(GCC_BUILD_DIR2
)/.configured
144 $(GCC_BUILD_DIR2
)/.compiled
: $(GCC_BUILD_DIR2
)/.configured
145 PATH
=$(TARGET_PATH
) $(MAKE
) -C
$(GCC_BUILD_DIR2
) all
146 touch
$(GCC_BUILD_DIR2
)/.compiled
148 gcc-install
: $(GCC_BUILD_DIR2
)/.compiled FORCE
149 PATH
=$(TARGET_PATH
) $(MAKE
) -C
$(GCC_BUILD_DIR2
) install
150 echo
$(GCC_VERSION
) > $(STAGING_DIR
)/gcc_version
151 # Set up the symlinks to enable lying about target name.
153 (cd
$(STAGING_DIR
); \
154 ln
-sf
$(REAL_GNU_TARGET_NAME
) $(GNU_TARGET_NAME
); \
156 for app in
$(REAL_GNU_TARGET_NAME
)-* ; do \
158 $(GNU_TARGET_NAME
)$${app
##$(REAL_GNU_TARGET_NAME)}; \
161 # We do another ugly hack here because the standard behaviour is
162 # to include a reference to libgcc.so.1 in all binaries. For flash space
163 # saving, we change the specs file to link in a static libgcc here.
164 if
[ -f
$(STAGING_DIR
)/lib
/gcc
/$(REAL_GNU_TARGET_NAME
)/$(GCC_VERSION
)/specs
] ; then \
165 patch
-d
$(STAGING_DIR
)/lib
/gcc
/$(REAL_GNU_TARGET_NAME
)/$(GCC_VERSION
)/ -p0
< .
/$(GCC_VERSION
)/static-libgcc.patch.conditional
; \
168 source
: $(DL_DIR
)/$(GCC_SOURCE
)
169 prepare
: $(STAGING_DIR
)/bin
/$(REAL_GNU_TARGET_NAME
)-gcc
174 rm -rf
$(GCC_BUILD_DIR1
)
175 rm -rf
$(GCC_BUILD_DIR2
)
176 rm -f
$(STAGING_DIR
)/bin
/$(REAL_GNU_TARGET_NAME
)-gc
*
177 rm -f
$(STAGING_DIR
)/bin
/$(REAL_GNU_TARGET_NAME
)-c
*