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