gcc: remove version 4.9-linaro
[openwrt.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-2014 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 ifeq ($(findstring linaro, $(CONFIG_GCC_VERSION)),linaro)
29     LINARO_RELEASE:=
30     ifeq ($(CONFIG_GCC_VERSION),"4.6-linaro")
31       PKG_REV:=4.6-2013.05
32       PKG_VERSION:=4.6.4
33       PKG_VERSION_MAJOR:=4.6
34       PKG_MD5SUM:=26b48802ae1203cd99415026fbf56ed7
35       PKG_COMP:=bz2
36     endif
37     ifeq ($(CONFIG_GCC_VERSION),"4.8-linaro")
38       PKG_REV:=4.8-2014.04
39       PKG_VERSION:=4.8.3
40       PKG_VERSION_MAJOR:=4.8
41       PKG_MD5SUM:=5ba2f3a449b1658ccc09d27cc7ab3c03
42       PKG_COMP:=xz
43     endif
44     ifneq ($(LINARO_RELEASE),)
45       PKG_SOURCE_URL:=http://releases.linaro.org/$(LINARO_RELEASE)/components/toolchain/gcc-linaro/$(PKG_VERSION_MAJOR)
46     else
47       PKG_SOURCE_URL:=http://launchpad.net/gcc-linaro/$(PKG_VERSION_MAJOR)/$(PKG_REV)/+download/
48     endif
49     PKG_SOURCE:=$(PKG_NAME)-linaro-$(PKG_REV).tar.$(PKG_COMP)
50     GCC_DIR:=gcc-linaro-$(PKG_REV)
51     HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(GCC_DIR)
52 else
53   PKG_SOURCE_URL:=@GNU/gcc/gcc-$(PKG_VERSION)
54   PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
55
56   ifeq ($(PKG_VERSION),4.6.3)
57     PKG_MD5SUM:=773092fe5194353b02bb0110052a972e
58   endif
59   ifeq ($(PKG_VERSION),4.8.0)
60     PKG_MD5SUM:=e6040024eb9e761c3bea348d1fa5abb0
61   endif
62   ifeq ($(PKG_VERSION),5.2.0)
63     PKG_MD5SUM:=a51bcfeb3da7dd4c623e27207ed43467
64   endif
65 endif
66
67 PATCH_DIR=../patches/$(GCC_VERSION)
68
69 BUGURL=https://dev.openwrt.org/
70 ifeq ($(findstring linaro, $(CONFIG_GCC_VERSION)),linaro)
71   PKGVERSION=OpenWrt/Linaro GCC $(PKG_REV) $(REVISION)
72 else
73   PKGVERSION=OpenWrt GCC $(PKG_VERSION) $(REVISION)
74 endif
75
76 HOST_BUILD_PARALLEL:=1
77
78 include $(INCLUDE_DIR)/toolchain-build.mk
79
80 HOST_SOURCE_DIR:=$(HOST_BUILD_DIR)
81 ifeq ($(GCC_VARIANT),minimal)
82   GCC_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
83 else
84   HOST_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
85   GCC_BUILD_DIR:=$(HOST_BUILD_DIR)
86 endif
87
88 HOST_STAMP_PREPARED:=$(HOST_BUILD_DIR)/.prepared
89 HOST_STAMP_BUILT:=$(GCC_BUILD_DIR)/.built
90 HOST_STAMP_CONFIGURED:=$(GCC_BUILD_DIR)/.configured
91 HOST_STAMP_INSTALLED:=$(STAGING_DIR_HOST)/stamp/.gcc_$(GCC_VARIANT)_installed
92
93 SEP:=,
94 TARGET_LANGUAGES:="c,c++$(if $(CONFIG_INSTALL_LIBGCJ),$(SEP)java)$(if $(CONFIG_INSTALL_GFORTRAN),$(SEP)fortran)"
95
96 export libgcc_cv_fixed_point=no
97 ifdef CONFIG_USE_UCLIBC
98   export glibcxx_cv_c99_math_tr1=no
99 endif
100
101 GCC_CONFIGURE:= \
102         SHELL="$(BASH)" \
103         $(if $(shell gcc --version 2>&1 | grep LLVM), \
104                 CFLAGS="-O2 -fbracket-depth=512 -pipe" \
105                 CXXFLAGS="-O2 -fbracket-depth=512 -pipe" \
106         ) \
107         $(HOST_SOURCE_DIR)/configure \
108                 --with-bugurl=$(BUGURL) \
109                 --with-pkgversion="$(PKGVERSION)" \
110                 --prefix=$(TOOLCHAIN_DIR) \
111                 --build=$(GNU_HOST_NAME) \
112                 --host=$(GNU_HOST_NAME) \
113                 --target=$(REAL_GNU_TARGET_NAME) \
114                 --with-gnu-ld \
115                 --enable-target-optspace \
116                 --disable-libgomp \
117                 --disable-libmudflap \
118                 --disable-multilib \
119                 --disable-nls \
120                 $(GRAPHITE_CONFIGURE) \
121                 --with-host-libstdcxx=-lstdc++ \
122                 $(SOFT_FLOAT_CONFIG_OPTION) \
123                 $(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \
124                 $(if $(CONFIG_mips64)$(CONFIG_mips64el),--with-arch=mips64 \
125                         --with-abi=$(subst ",,$(CONFIG_MIPS64_ABI))) \
126                 --with-gmp=$(TOPDIR)/staging_dir/host \
127                 --with-mpfr=$(TOPDIR)/staging_dir/host \
128                 --with-mpc=$(TOPDIR)/staging_dir/host \
129                 --disable-decimal-float
130 ifneq ($(CONFIG_mips)$(CONFIG_mipsel),)
131   GCC_CONFIGURE += --with-mips-plt
132 endif
133
134 ifneq ($(CONFIG_SSP_SUPPORT),)
135   GCC_CONFIGURE+= \
136                 --enable-libssp
137 else
138   GCC_CONFIGURE+= \
139                 --disable-libssp
140 endif
141
142 ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
143   GCC_CONFIGURE+= \
144                 --enable-biarch \
145                 --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
146 endif
147
148 ifdef CONFIG_sparc
149   GCC_CONFIGURE+= \
150                 --enable-targets=all \
151                 --with-long-double-128
152 endif
153
154 ifeq ($(LIBC),uClibc)
155   GCC_CONFIGURE+= \
156                 --disable-__cxa_atexit
157 else
158   GCC_CONFIGURE+= \
159                 --enable-__cxa_atexit
160 endif
161
162 ifneq ($(GCC_ARCH),)
163   GCC_CONFIGURE+= --with-arch=$(GCC_ARCH)
164 endif
165
166 ifneq ($(CONFIG_SOFT_FLOAT),y)
167   ifeq ($(CONFIG_arm),y)
168     GCC_CONFIGURE+= \
169                 --with-float=hard
170   endif
171 endif
172
173 GCC_MAKE:= \
174         export SHELL="$(BASH)"; \
175         $(MAKE) \
176                 CFLAGS="$(HOST_CFLAGS)" \
177                 CFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \
178                 CXXFLAGS_FOR_TARGET="$(TARGET_CFLAGS)"
179
180 define Host/Prepare
181         mkdir -p $(GCC_BUILD_DIR)
182 endef
183
184 define Host/Configure
185         (cd $(GCC_BUILD_DIR) && rm -f config.cache; \
186                 $(GCC_CONFIGURE) \
187         );
188 endef
189
190 define Host/Clean
191         rm -rf \
192                 $(STAGING_DIR_HOST)/stamp/.gcc_* \
193                 $(STAGING_DIR_HOST)/stamp/.binutils_* \
194                 $(GCC_BUILD_DIR) \
195                 $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME) \
196                 $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME) \
197                 $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gc* \
198                 $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-c*
199 endef