7fb30285aa80f5b4046e8cdd7bda2a4e92557ab8
[oweals/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@nbd.name>
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 PKG_SOURCE_URL:=@GNU/gcc/gcc-$(PKG_VERSION)
29 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
30
31 ifeq ($(PKG_VERSION),5.5.0)
32   PKG_HASH:=530cea139d82fe542b358961130c69cfde8b3d14556370b65823d2f91f0ced87
33 endif
34
35 ifeq ($(PKG_VERSION),7.5.0)
36   PKG_HASH:=b81946e7f01f90528a1f7352ab08cc602b9ccc05d4e44da4bd501c5a189ee661
37 endif
38
39 ifeq ($(PKG_VERSION),8.4.0)
40   PKG_HASH:=e30a6e52d10e1f27ed55104ad233c30bd1e99cfb5ff98ab022dc941edd1b2dd4
41 endif
42
43 ifeq ($(PKG_VERSION),9.3.0)
44   PKG_HASH:=71e197867611f6054aa1119b13a0c0abac12834765fe2d81f35ac57f84f742d1
45 endif
46
47 PATCH_DIR=../patches/$(GCC_VERSION)
48
49 BUGURL=http://bugs.openwrt.org/
50 PKGVERSION=OpenWrt GCC $(PKG_VERSION) $(REVISION)
51
52 HOST_BUILD_PARALLEL:=1
53
54 include $(INCLUDE_DIR)/toolchain-build.mk
55
56 HOST_SOURCE_DIR:=$(HOST_BUILD_DIR)
57 ifeq ($(GCC_VARIANT),minimal)
58   GCC_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
59 else
60   HOST_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
61   GCC_BUILD_DIR:=$(HOST_BUILD_DIR)
62 endif
63
64 HOST_STAMP_PREPARED:=$(HOST_BUILD_DIR)/.prepared
65 HOST_STAMP_BUILT:=$(GCC_BUILD_DIR)/.built
66 HOST_STAMP_CONFIGURED:=$(GCC_BUILD_DIR)/.configured
67 HOST_STAMP_INSTALLED:=$(HOST_BUILD_PREFIX)/stamp/.gcc_$(GCC_VARIANT)_installed
68
69 SEP:=,
70 TARGET_LANGUAGES:="c,c++$(if $(CONFIG_INSTALL_GFORTRAN),$(SEP)fortran)$(if $(CONFIG_INSTALL_GCCGO),$(SEP)go)"
71
72 TAR_OPTIONS += \
73         --exclude-from='$(CURDIR)/../exclude-testsuite' --exclude=gcc/ada/*.ad* \
74         --exclude=libjava
75
76 export libgcc_cv_fixed_point=no
77 ifdef CONFIG_INSTALL_GCCGO
78   export libgo_cv_c_split_stack_supported=no
79 endif
80
81 ifdef CONFIG_GCC_USE_GRAPHITE
82   GRAPHITE_CONFIGURE:= --with-isl=$(TOPDIR)/staging_dir/host
83 else
84   GRAPHITE_CONFIGURE:= --without-isl --without-cloog
85 endif
86
87 GCC_CONFIGURE:= \
88         SHELL="$(BASH)" \
89         $(if $(shell gcc --version 2>&1 | grep -E "Apple.(LLVM|clang)"), \
90                 CFLAGS="-O2 -fbracket-depth=512 -pipe" \
91                 CXXFLAGS="-O2 -fbracket-depth=512 -pipe" \
92         ) \
93         $(HOST_SOURCE_DIR)/configure \
94                 --with-bugurl=$(BUGURL) \
95                 --with-pkgversion="$(PKGVERSION)" \
96                 --prefix=$(TOOLCHAIN_DIR) \
97                 --build=$(GNU_HOST_NAME) \
98                 --host=$(GNU_HOST_NAME) \
99                 --target=$(REAL_GNU_TARGET_NAME) \
100                 --with-gnu-ld \
101                 --enable-target-optspace \
102                 --disable-libgomp \
103                 --disable-libmudflap \
104                 --disable-multilib \
105                 --disable-libmpx \
106                 --disable-nls \
107                 $(GRAPHITE_CONFIGURE) \
108                 --with-host-libstdcxx=-lstdc++ \
109                 $(SOFT_FLOAT_CONFIG_OPTION) \
110                 $(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \
111                 $(if $(CONFIG_mips64)$(CONFIG_mips64el),--with-arch=mips64 \
112                         --with-abi=$(call qstrip,$(CONFIG_MIPS64_ABI))) \
113                 $(if $(CONFIG_arc),--with-cpu=$(CONFIG_CPU_TYPE)) \
114                 --with-gmp=$(TOPDIR)/staging_dir/host \
115                 --with-mpfr=$(TOPDIR)/staging_dir/host \
116                 --with-mpc=$(TOPDIR)/staging_dir/host \
117                 --disable-decimal-float \
118                 --with-diagnostics-color=auto-if-env \
119                 --enable-__cxa_atexit
120 ifneq ($(CONFIG_mips)$(CONFIG_mipsel),)
121   GCC_CONFIGURE += --with-mips-plt
122 endif
123
124 ifneq ($(CONFIG_GCC_DEFAULT_PIE),)
125   GCC_CONFIGURE+= \
126                 --enable-default-pie
127 endif
128
129 ifneq ($(CONFIG_GCC_DEFAULT_SSP),)
130   GCC_CONFIGURE+= \
131                 --enable-default-ssp
132 endif
133
134 ifneq ($(CONFIG_GCC_LIBSSP),)
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 ifneq ($(GCC_ARCH),)
155   GCC_CONFIGURE+= --with-arch=$(GCC_ARCH)
156 endif
157
158 ifeq ($(CONFIG_arm),y)
159   GCC_CONFIGURE+= \
160         --with-cpu=$(word 1, $(subst +," ,$(CONFIG_CPU_TYPE)))
161
162   ifneq ($(CONFIG_SOFT_FLOAT),y)
163     GCC_CONFIGURE+= \
164                 --with-fpu=$(word 2, $(subst +, ",$(CONFIG_CPU_TYPE))) \
165                 --with-float=hard
166   endif
167
168   # Do not let TARGET_CFLAGS get poisoned by extra CPU optimization flags
169   # that do not belong here. The cpu,fpu type should be specified via
170   # --with-cpu and --with-fpu for ARM and not CFLAGS.
171   TARGET_CFLAGS:=$(filter-out -m%,$(call qstrip,$(TARGET_CFLAGS)))
172 endif
173
174 ifeq ($(CONFIG_TARGET_x86)$(CONFIG_USE_GLIBC)$(CONFIG_INSTALL_GCCGO),yyy)
175   TARGET_CFLAGS+=-fno-split-stack
176 endif
177
178 GCC_MAKE:= \
179         export SHELL="$(BASH)"; \
180         $(MAKE) \
181                 CFLAGS="$(HOST_CFLAGS)" \
182                 CFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \
183                 CXXFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \
184                 GOCFLAGS_FOR_TARGET="$(TARGET_CFLAGS)"
185
186 define Host/SetToolchainInfo
187         $(SED) 's,TARGET_CROSS=.*,TARGET_CROSS=$(REAL_GNU_TARGET_NAME)-,' $(TOOLCHAIN_DIR)/info.mk
188         $(SED) 's,GCC_VERSION=.*,GCC_VERSION=$(GCC_VERSION),' $(TOOLCHAIN_DIR)/info.mk
189 endef
190
191 ifneq ($(GCC_PREPARE),)
192   define Host/Prepare
193         $(call Host/SetToolchainInfo)
194         $(call Host/Prepare/Default)
195         ln -snf $(GCC_DIR) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
196         $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_SOURCE_DIR)/
197         $(SED) 's,^MULTILIB_OSDIRNAMES,# MULTILIB_OSDIRNAMES,' $(HOST_SOURCE_DIR)/gcc/config/*/t-*
198         $(SED) 'd' $(HOST_SOURCE_DIR)/gcc/DEV-PHASE
199         $(SED) 's, DATESTAMP,,' $(HOST_SOURCE_DIR)/gcc/version.c
200         #(cd $(HOST_SOURCE_DIR)/libstdc++-v3; autoconf;);
201         $(SED) 's,gcc_no_link=yes,gcc_no_link=no,' $(HOST_SOURCE_DIR)/libstdc++-v3/configure
202         mkdir -p $(GCC_BUILD_DIR)
203   endef
204 else
205   define Host/Prepare
206         mkdir -p $(GCC_BUILD_DIR)
207   endef
208 endif
209
210 define Host/Configure
211         (cd $(GCC_BUILD_DIR) && rm -f config.cache; \
212                 $(GCC_CONFIGURE) \
213         );
214 endef
215
216 define Host/Clean
217         rm -rf $(if $(GCC_PREPARE),$(HOST_SOURCE_DIR)) \
218                 $(HOST_BUILD_PREFIX)/stamp/.gcc_* \
219                 $(HOST_BUILD_PREFIX)/stamp/.binutils_* \
220                 $(GCC_BUILD_DIR) \
221                 $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME) \
222                 $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME) \
223                 $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gc* \
224                 $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-c*
225 endef