busybox: fix installation of cron and ntpd scripts in the default config
[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.bz2
30
31 ifeq ($(PKG_VERSION),5.4.0)
32 PKG_HASH:=608df76dec2d34de6558249d8af4cbee21eceddbcb580d666f7a5a583ca3303a
33 endif
34
35 ifeq ($(PKG_VERSION),6.3.0)
36 PKG_HASH:=f06ae7f3f790fbf0f018f6d40e844451e6bc3b7bc96e128e63b09825c1f8b29f
37 endif
38
39 ifneq ($(CONFIG_GCC_VERSION_4_8_ARC),)
40 PKG_VERSION:=4.8.5
41 PKG_SOURCE_URL:=https://github.com/foss-for-synopsys-dwc-arc-processors/gcc/archive/arc-2016.03
42 PKG_SOURCE:=$(PKG_NAME)-$(GCC_VERSION).tar.gz
43 PKG_HASH:=6a5eb0c83dca16f228ac836677a1fbb42a53c30334487ac37c2c18db80a38f35
44 PKG_REV:=2016.03
45 GCC_DIR:=gcc-arc-$(PKG_REV)
46 HOST_BUILD_DIR = $(BUILD_DIR_HOST)/$(PKG_NAME)-$(GCC_VERSION)
47 endif
48
49 PATCH_DIR=../patches/$(GCC_VERSION)
50
51 BUGURL=http://www.lede-project.org/bugs/
52 PKGVERSION=LEDE GCC $(PKG_VERSION) $(REVISION)
53
54 HOST_BUILD_PARALLEL:=1
55
56 include $(INCLUDE_DIR)/toolchain-build.mk
57
58 HOST_SOURCE_DIR:=$(HOST_BUILD_DIR)
59 ifeq ($(GCC_VARIANT),minimal)
60 GCC_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
61 else
62 HOST_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
63 GCC_BUILD_DIR:=$(HOST_BUILD_DIR)
64 endif
65
66 HOST_STAMP_PREPARED:=$(HOST_BUILD_DIR)/.prepared
67 HOST_STAMP_BUILT:=$(GCC_BUILD_DIR)/.built
68 HOST_STAMP_CONFIGURED:=$(GCC_BUILD_DIR)/.configured
69 HOST_STAMP_INSTALLED:=$(STAGING_DIR_HOST)/stamp/.gcc_$(GCC_VARIANT)_installed
70
71 SEP:=,
72 TARGET_LANGUAGES:="c,c++$(if $(CONFIG_INSTALL_LIBGCJ),$(SEP)java)$(if $(CONFIG_INSTALL_GFORTRAN),$(SEP)fortran)$(if $(CONFIG_INSTALL_GCCGO),$(SEP)go)"
73
74 TAR_OPTIONS += --exclude='gcc/testsuite/*' --exclude=gcc/ada/*.ad*
75
76 ifndef CONFIG_INSTALL_LIBGCJ
77 TAR_OPTIONS += --exclude=libjava
78 endif
79
80 export libgcc_cv_fixed_point=no
81 ifdef CONFIG_USE_UCLIBC
82 export glibcxx_cv_c99_math_tr1=no
83 endif
84 ifdef CONFIG_INSTALL_GCCGO
85 export libgo_cv_c_split_stack_supported=no
86 endif
87
88 ifdef CONFIG_GCC_USE_GRAPHITE
89 GRAPHITE_CONFIGURE=--with-isl=$(REAL_STAGING_DIR_HOST)
90 else
91 GRAPHITE_CONFIGURE=--without-isl --without-cloog
92 endif
93
94 GCC_CONFIGURE:= \
95 SHELL="$(BASH)" \
96 $(if $(shell gcc --version 2>&1 | grep LLVM), \
97 CFLAGS="-O2 -fbracket-depth=512 -pipe" \
98 CXXFLAGS="-O2 -fbracket-depth=512 -pipe" \
99 ) \
100 $(HOST_SOURCE_DIR)/configure \
101 --with-bugurl=$(BUGURL) \
102 --with-pkgversion="$(PKGVERSION)" \
103 --prefix=$(TOOLCHAIN_DIR) \
104 --build=$(GNU_HOST_NAME) \
105 --host=$(GNU_HOST_NAME) \
106 --target=$(REAL_GNU_TARGET_NAME) \
107 --with-gnu-ld \
108 --enable-target-optspace \
109 --disable-libgomp \
110 --disable-libmudflap \
111 --disable-multilib \
112 --disable-libmpx \
113 --disable-nls \
114 $(GRAPHITE_CONFIGURE) \
115 --with-host-libstdcxx=-lstdc++ \
116 $(SOFT_FLOAT_CONFIG_OPTION) \
117 $(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \
118 $(if $(CONFIG_mips64)$(CONFIG_mips64el),--with-arch=mips64 \
119 --with-abi=$(call qstrip,$(CONFIG_MIPS64_ABI))) \
120 $(if $(CONFIG_arc),--with-cpu=$(CONFIG_CPU_TYPE)) \
121 --with-gmp=$(TOPDIR)/staging_dir/host \
122 --with-mpfr=$(TOPDIR)/staging_dir/host \
123 --with-mpc=$(TOPDIR)/staging_dir/host \
124 --disable-decimal-float
125 ifneq ($(CONFIG_mips)$(CONFIG_mipsel),)
126 GCC_CONFIGURE += --with-mips-plt
127 endif
128
129 ifndef GCC_VERSION_4_8
130 GCC_CONFIGURE += --with-diagnostics-color=auto-if-env
131 endif
132
133 ifneq ($(CONFIG_SSP_SUPPORT),)
134 GCC_CONFIGURE+= \
135 --enable-libssp
136 else
137 GCC_CONFIGURE+= \
138 --disable-libssp
139 endif
140
141 ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
142 GCC_CONFIGURE+= \
143 --enable-biarch \
144 --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
145 endif
146
147 ifdef CONFIG_sparc
148 GCC_CONFIGURE+= \
149 --enable-targets=all \
150 --with-long-double-128
151 endif
152
153 ifeq ($(LIBC),uClibc)
154 GCC_CONFIGURE+= \
155 --disable-__cxa_atexit
156 else
157 GCC_CONFIGURE+= \
158 --enable-__cxa_atexit
159 endif
160
161 ifneq ($(GCC_ARCH),)
162 GCC_CONFIGURE+= --with-arch=$(GCC_ARCH)
163 endif
164
165 ifneq ($(CONFIG_SOFT_FLOAT),y)
166 ifeq ($(CONFIG_arm),y)
167 GCC_CONFIGURE+= \
168 --with-float=hard
169 endif
170 endif
171
172 ifeq ($(CONFIG_TARGET_x86)$(CONFIG_USE_GLIBC)$(CONFIG_INSTALL_GCCGO),yyy)
173 TARGET_CFLAGS+=-fno-split-stack
174 endif
175
176 GCC_MAKE:= \
177 export SHELL="$(BASH)"; \
178 $(MAKE) \
179 CFLAGS="$(HOST_CFLAGS)" \
180 CFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \
181 CXXFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \
182 GOCFLAGS_FOR_TARGET="$(TARGET_CFLAGS)"
183
184 define Host/SetToolchainInfo
185 $(SED) 's,TARGET_CROSS=.*,TARGET_CROSS=$(REAL_GNU_TARGET_NAME)-,' $(TOOLCHAIN_DIR)/info.mk
186 $(SED) 's,GCC_VERSION=.*,GCC_VERSION=$(GCC_VERSION),' $(TOOLCHAIN_DIR)/info.mk
187 endef
188
189 ifneq ($(GCC_PREPARE),)
190 define Host/Prepare
191 $(call Host/SetToolchainInfo)
192 $(call Host/Prepare/Default)
193 ln -snf $(GCC_DIR) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
194 $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_SOURCE_DIR)/
195 $(SED) 's,^MULTILIB_OSDIRNAMES,# MULTILIB_OSDIRNAMES,' $(HOST_SOURCE_DIR)/gcc/config/*/t-*
196 $(SED) 'd' $(HOST_SOURCE_DIR)/gcc/DEV-PHASE
197 $(SED) 's, DATESTAMP,,' $(HOST_SOURCE_DIR)/gcc/version.c
198 #(cd $(HOST_SOURCE_DIR)/libstdc++-v3; autoconf;);
199 $(SED) 's,gcc_no_link=yes,gcc_no_link=no,' $(HOST_SOURCE_DIR)/libstdc++-v3/configure
200 mkdir -p $(GCC_BUILD_DIR)
201 endef
202 else
203 define Host/Prepare
204 mkdir -p $(GCC_BUILD_DIR)
205 endef
206 endif
207
208 define Host/Configure
209 (cd $(GCC_BUILD_DIR) && rm -f config.cache; \
210 $(GCC_CONFIGURE) \
211 );
212 endef
213
214 define Host/Clean
215 rm -rf $(if $(GCC_PREPARE),$(HOST_SOURCE_DIR)) \
216 $(STAGING_DIR_HOST)/stamp/.gcc_* \
217 $(STAGING_DIR_HOST)/stamp/.binutils_* \
218 $(GCC_BUILD_DIR) \
219 $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME) \
220 $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME) \
221 $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gc* \
222 $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-c*
223 endef