add gcc 4.5.2 (replaces 4.5.1)
[openwrt/staging/mkresin.git] / toolchain / gcc / common.mk
1 #
2 # Copyright (C) 2002-2003 Erik Andersen <andersen@uclibc.org>
3 # Copyright (C) 2004 Manuel Novoa III <mjn3@uclibc.org>
4 # Copyright (C) 2005-2006 Felix Fietkau <nbd@openwrt.org>
5 # Copyright (C) 2006-2010 OpenWrt.org
6 #
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.
11 #
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.
16 #
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
20
21 include $(TOPDIR)/rules.mk
22
23 PKG_NAME:=gcc
24 GCC_VERSION:=$(call qstrip,$(CONFIG_GCC_VERSION))
25 PKG_VERSION:=$(firstword $(subst +, ,$(GCC_VERSION)))
26 GCC_DIR:=$(PKG_NAME)-$(PKG_VERSION)
27
28 ifdef CONFIG_GCC_VERSION_LLVM
29 PKG_SOURCE_VERSION:=c98c494b72ff875884c0c7286be67f16f9f6d7ab
30 PKG_REV:=83504
31 GCC_DIR:=llvm-gcc-4.2-r$(PKG_REV)
32 PKG_VERSION:=4.2.1
33 PKG_SOURCE:=$(GCC_DIR).tar.gz
34 PKG_SOURCE_PROTO:=git
35 PKG_SOURCE_URL:=git://repo.or.cz/llvm-gcc-4.2.git
36 PKG_SOURCE_SUBDIR:=$(GCC_DIR)
37 HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(GCC_DIR)
38 else
39 ifdef CONFIG_GCC_VERSION_4_5_1_LINARO
40 PKG_REV:=4.5-2010.12-0
41 PKG_VERSION:=4.5.2
42 PKG_SOURCE_URL:=http://launchpad.net/gcc-linaro/4.5/4.5-2010.12-0/+download/
43 PKG_SOURCE:=$(PKG_NAME)-linaro-$(PKG_REV).tar.bz2
44 PKG_MD5SUM:=a01e511fd1a3b42b54d239b393f740fe
45 GCC_DIR:=gcc-linaro-$(PKG_REV)
46 HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(GCC_DIR)
47 else
48 PKG_SOURCE_URL:=@GNU/gcc/gcc-$(PKG_VERSION)
49 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
50
51 ifeq ($(PKG_VERSION),4.1.2)
52 PKG_MD5SUM:=a4a3eb15c96030906d8494959eeda23c
53 endif
54 ifeq ($(PKG_VERSION),4.2.4)
55 PKG_MD5SUM:=d79f553e7916ea21c556329eacfeaa16
56 endif
57 ifeq ($(PKG_VERSION),4.3.3)
58 PKG_MD5SUM:=cc3c5565fdb9ab87a05ddb106ba0bd1f
59 endif
60 ifeq ($(PKG_VERSION),4.3.5)
61 PKG_MD5SUM:=e588cfde3bf323f82918589b94f14a15
62 endif
63 ifeq ($(PKG_VERSION),4.4.1)
64 PKG_MD5SUM:=927eaac3d44b22f31f9c83df82f26436
65 endif
66 ifeq ($(PKG_VERSION),4.4.5)
67 PKG_MD5SUM:=44b3192c4c584b9be5243d9e8e7e0ed1
68 endif
69 ifeq ($(PKG_VERSION),4.5.2)
70 PKG_MD5SUM:=e31fe695d7235f11fb5a63eafdfbfe88
71 endif
72 endif
73 endif
74
75 PATCH_DIR=../patches/$(GCC_VERSION)
76
77 BUGURL=https://dev.openwrt.org/
78
79 include $(INCLUDE_DIR)/toolchain-build.mk
80
81 HOST_SOURCE_DIR:=$(HOST_BUILD_DIR)
82 ifeq ($(GCC_VARIANT),minimal)
83 GCC_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
84 else
85 HOST_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
86 GCC_BUILD_DIR:=$(HOST_BUILD_DIR)
87 endif
88
89 HOST_STAMP_PREPARED:=$(HOST_BUILD_DIR)/.prepared
90 HOST_STAMP_BUILT:=$(GCC_BUILD_DIR)/.built
91 HOST_STAMP_CONFIGURED:=$(GCC_BUILD_DIR)/.configured
92 HOST_STAMP_INSTALLED:=$(STAGING_DIR_HOST)/stamp/.gcc_$(GCC_VARIANT)_installed
93
94 SEP:=,
95 TARGET_LANGUAGES:="c$(if $(CONFIG_INSTALL_LIBSTDCPP),$(SEP)c++)$(if $(CONFIG_INSTALL_LIBGCJ),$(SEP)java)"
96
97 export libgcc_cv_fixed_point=no
98 ifdef CONFIG_USE_UCLIBC
99 export glibcxx_cv_c99_math_tr1=no
100 endif
101
102 GCC_CONFIGURE:= \
103 SHELL="$(BASH)" \
104 $(HOST_SOURCE_DIR)/configure \
105 --prefix=$(TOOLCHAIN_DIR) \
106 --build=$(GNU_HOST_NAME) \
107 --host=$(GNU_HOST_NAME) \
108 --target=$(REAL_GNU_TARGET_NAME) \
109 --with-gnu-ld \
110 --enable-target-optspace \
111 --disable-libgomp \
112 --disable-libmudflap \
113 --disable-multilib \
114 --disable-nls \
115 $(GRAPHITE_CONFIGURE) \
116 $(if $(CONFIG_GCC_USE_GRAPHITE),--with-host-libstdcxx=-lstdc++) \
117 $(SOFT_FLOAT_CONFIG_OPTION) \
118 $(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \
119 $(if $(CONFIG_mips64)$(CONFIG_mips64el),--with-arch=mips64 --with-abi=64) \
120 $(if $(CONFIG_GCC_VERSION_LLVM),--enable-llvm=$(BUILD_DIR_BASE)/host/llvm) \
121 $(if $(CONFIG_GCC_VERSION_4_3_3_CS)$(CONFIG_GCC_VERSION_4_4_1_CS),--enable-poison-system-directories)
122
123 ifneq ($(CONFIG_GCC_VERSION_4_4)$(CONFIG_GCC_VERSION_4_5),)
124 ifneq ($(CONFIG_mips)$(CONFIG_mipsel),)
125 GCC_CONFIGURE += --with-mips-plt
126 endif
127 endif
128
129 ifneq ($(CONFIG_GCC_VERSION_4_3)$(CONFIG_GCC_VERSION_4_4)$(CONFIG_GCC_VERSION_4_5),)
130 GCC_BUILD_TARGET_LIBGCC:=y
131 GCC_CONFIGURE+= \
132 --with-gmp=$(TOPDIR)/staging_dir/host \
133 --with-mpfr=$(TOPDIR)/staging_dir/host \
134 --disable-decimal-float
135 endif
136
137 ifneq ($(CONFIG_GCC_VERSION_4_5),)
138 GCC_BUILD_TARGET_LIBGCC:=y
139 GCC_CONFIGURE+= \
140 --with-gmp=$(TOPDIR)/staging_dir/host \
141 --with-mpc=$(TOPDIR)/staging_dir/host \
142 --with-mpfr=$(TOPDIR)/staging_dir/host \
143 --disable-decimal-float
144 endif
145
146 ifneq ($(CONFIG_SSP_SUPPORT),)
147 GCC_CONFIGURE+= \
148 --enable-libssp
149 else
150 GCC_CONFIGURE+= \
151 --disable-libssp
152 endif
153
154 ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
155 GCC_CONFIGURE+= \
156 --enable-biarch \
157 --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
158 endif
159
160 ifdef CONFIG_sparc
161 GCC_CONFIGURE+= --enable-targets=all
162 endif
163
164 ifeq ($(LIBC),uClibc)
165 GCC_CONFIGURE+= \
166 --disable-__cxa_atexit
167 else
168 GCC_CONFIGURE+= \
169 --enable-__cxa_atexit
170 endif
171
172 ifdef CONFIG_powerpc
173 TARGET_CFLAGS := $(patsubst -Os,-O2,$(TARGET_CFLAGS))
174 endif
175
176 GCC_MAKE:= \
177 export SHELL="$(BASH)"; \
178 $(MAKE) $(TOOLCHAIN_JOBS) \
179 CFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \
180 CXXFLAGS_FOR_TARGET="$(TARGET_CFLAGS)"
181
182 define Host/Prepare
183 mkdir -p $(GCC_BUILD_DIR)
184 endef
185
186 define Host/Configure
187 (cd $(GCC_BUILD_DIR) && rm -f config.cache; \
188 $(GCC_CONFIGURE) \
189 );
190 endef
191
192 define Host/Clean
193 rm -rf \
194 $(STAGING_DIR_HOST)/stamp/.gcc_* \
195 $(STAGING_DIR_HOST)/stamp/.binutils_* \
196 $(GCC_BUILD_DIR) \
197 $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME) \
198 $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME) \
199 $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gc* \
200 $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-c*
201 endef