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