2010-07-20 20:57:21 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2002-2003 Erik Andersen <andersen@uclibc.org>
|
|
|
|
# Copyright (C) 2004 Manuel Novoa III <mjn3@uclibc.org>
|
2016-06-07 06:58:31 +00:00
|
|
|
# Copyright (C) 2005-2006 Felix Fietkau <nbd@nbd.name>
|
2014-02-06 10:28:45 +00:00
|
|
|
# Copyright (C) 2006-2014 OpenWrt.org
|
2010-07-20 20:57:21 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gcc
|
|
|
|
GCC_VERSION:=$(call qstrip,$(CONFIG_GCC_VERSION))
|
|
|
|
PKG_VERSION:=$(firstword $(subst +, ,$(GCC_VERSION)))
|
|
|
|
GCC_DIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
|
2015-11-10 12:03:59 +00:00
|
|
|
PKG_SOURCE_URL:=@GNU/gcc/gcc-$(PKG_VERSION)
|
2017-10-12 01:21:36 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2015-11-10 12:03:59 +00:00
|
|
|
|
2017-10-12 01:21:36 +00:00
|
|
|
ifeq ($(PKG_VERSION),5.5.0)
|
|
|
|
PKG_HASH:=530cea139d82fe542b358961130c69cfde8b3d14556370b65823d2f91f0ced87
|
2015-11-10 12:03:59 +00:00
|
|
|
endif
|
|
|
|
|
2016-12-24 09:09:35 +00:00
|
|
|
ifeq ($(PKG_VERSION),6.3.0)
|
|
|
|
PKG_HASH:=f06ae7f3f790fbf0f018f6d40e844451e6bc3b7bc96e128e63b09825c1f8b29f
|
2017-10-12 01:21:36 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2016-07-13 13:57:05 +00:00
|
|
|
endif
|
|
|
|
|
2018-01-27 13:28:46 +00:00
|
|
|
ifeq ($(PKG_VERSION),7.3.0)
|
|
|
|
PKG_HASH:=832ca6ae04636adbb430e865a1451adf6979ab44ca1c8374f61fba65645ce15c
|
2017-05-04 13:18:13 +00:00
|
|
|
endif
|
|
|
|
|
2018-01-24 17:26:03 +00:00
|
|
|
ifneq ($(CONFIG_GCC_VERSION_7_1_ARC),)
|
|
|
|
PKG_VERSION:=7.1.1
|
2017-02-27 18:27:50 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/foss-for-synopsys-dwc-arc-processors/gcc/archive/$(GCC_VERSION)
|
2015-11-10 12:03:59 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(GCC_VERSION).tar.gz
|
2018-01-24 17:26:03 +00:00
|
|
|
PKG_HASH:=90596af8b9c26a434cec0a3b3d37d0c7c755ab6a65496af6ca32529fab5a6cfe
|
|
|
|
PKG_REV:=2017.09-release
|
2015-11-10 12:03:59 +00:00
|
|
|
GCC_DIR:=gcc-arc-$(PKG_REV)
|
|
|
|
HOST_BUILD_DIR = $(BUILD_DIR_HOST)/$(PKG_NAME)-$(GCC_VERSION)
|
2010-07-20 20:57:21 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
PATCH_DIR=../patches/$(GCC_VERSION)
|
|
|
|
|
2016-03-24 21:40:13 +00:00
|
|
|
BUGURL=http://www.lede-project.org/bugs/
|
2017-11-07 08:45:57 +00:00
|
|
|
PKGVERSION=OpenWrt GCC $(PKG_VERSION) $(REVISION)
|
2010-07-20 20:57:21 +00:00
|
|
|
|
2012-09-15 14:18:19 +00:00
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
|
2010-07-20 20:57:21 +00:00
|
|
|
include $(INCLUDE_DIR)/toolchain-build.mk
|
|
|
|
|
|
|
|
HOST_SOURCE_DIR:=$(HOST_BUILD_DIR)
|
|
|
|
ifeq ($(GCC_VARIANT),minimal)
|
|
|
|
GCC_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
|
|
|
|
else
|
|
|
|
HOST_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
|
|
|
|
GCC_BUILD_DIR:=$(HOST_BUILD_DIR)
|
|
|
|
endif
|
|
|
|
|
|
|
|
HOST_STAMP_PREPARED:=$(HOST_BUILD_DIR)/.prepared
|
|
|
|
HOST_STAMP_BUILT:=$(GCC_BUILD_DIR)/.built
|
|
|
|
HOST_STAMP_CONFIGURED:=$(GCC_BUILD_DIR)/.configured
|
2017-05-03 13:01:03 +00:00
|
|
|
HOST_STAMP_INSTALLED:=$(HOST_BUILD_PREFIX)/stamp/.gcc_$(GCC_VARIANT)_installed
|
2010-07-20 20:57:21 +00:00
|
|
|
|
|
|
|
SEP:=,
|
2017-11-02 13:16:20 +00:00
|
|
|
TARGET_LANGUAGES:="c,c++$(if $(CONFIG_INSTALL_GFORTRAN),$(SEP)fortran)$(if $(CONFIG_INSTALL_GCCGO),$(SEP)go)"
|
2010-07-20 20:57:21 +00:00
|
|
|
|
2017-05-04 13:18:13 +00:00
|
|
|
TAR_OPTIONS += \
|
|
|
|
--exclude-from='$(CURDIR)/../exclude-testsuite' --exclude=gcc/ada/*.ad* \
|
2017-11-02 13:16:20 +00:00
|
|
|
--exclude=libjava
|
2017-02-01 07:29:06 +00:00
|
|
|
|
2010-07-20 20:57:21 +00:00
|
|
|
export libgcc_cv_fixed_point=no
|
2010-12-20 14:25:05 +00:00
|
|
|
ifdef CONFIG_USE_UCLIBC
|
|
|
|
export glibcxx_cv_c99_math_tr1=no
|
|
|
|
endif
|
2016-07-15 10:17:20 +00:00
|
|
|
ifdef CONFIG_INSTALL_GCCGO
|
|
|
|
export libgo_cv_c_split_stack_supported=no
|
|
|
|
endif
|
2010-07-20 20:57:21 +00:00
|
|
|
|
2015-11-13 11:35:41 +00:00
|
|
|
ifdef CONFIG_GCC_USE_GRAPHITE
|
2017-05-30 07:10:02 +00:00
|
|
|
GRAPHITE_CONFIGURE:= --with-isl=$(TOPDIR)/staging_dir/host
|
2015-11-13 11:35:41 +00:00
|
|
|
else
|
2017-05-30 07:10:02 +00:00
|
|
|
GRAPHITE_CONFIGURE:= --without-isl --without-cloog
|
2015-11-13 11:35:41 +00:00
|
|
|
endif
|
|
|
|
|
2010-07-20 20:57:21 +00:00
|
|
|
GCC_CONFIGURE:= \
|
|
|
|
SHELL="$(BASH)" \
|
2014-05-15 20:11:54 +00:00
|
|
|
$(if $(shell gcc --version 2>&1 | grep LLVM), \
|
|
|
|
CFLAGS="-O2 -fbracket-depth=512 -pipe" \
|
|
|
|
CXXFLAGS="-O2 -fbracket-depth=512 -pipe" \
|
|
|
|
) \
|
2010-07-20 20:57:21 +00:00
|
|
|
$(HOST_SOURCE_DIR)/configure \
|
2013-04-03 10:41:07 +00:00
|
|
|
--with-bugurl=$(BUGURL) \
|
|
|
|
--with-pkgversion="$(PKGVERSION)" \
|
2010-08-19 12:49:51 +00:00
|
|
|
--prefix=$(TOOLCHAIN_DIR) \
|
2010-07-20 20:57:21 +00:00
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
--host=$(GNU_HOST_NAME) \
|
|
|
|
--target=$(REAL_GNU_TARGET_NAME) \
|
|
|
|
--with-gnu-ld \
|
|
|
|
--enable-target-optspace \
|
|
|
|
--disable-libgomp \
|
|
|
|
--disable-libmudflap \
|
|
|
|
--disable-multilib \
|
2016-07-21 12:26:30 +00:00
|
|
|
--disable-libmpx \
|
2010-07-20 20:57:21 +00:00
|
|
|
--disable-nls \
|
|
|
|
$(GRAPHITE_CONFIGURE) \
|
2012-01-12 10:15:20 +00:00
|
|
|
--with-host-libstdcxx=-lstdc++ \
|
2010-07-20 20:57:21 +00:00
|
|
|
$(SOFT_FLOAT_CONFIG_OPTION) \
|
|
|
|
$(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \
|
2013-04-05 12:36:23 +00:00
|
|
|
$(if $(CONFIG_mips64)$(CONFIG_mips64el),--with-arch=mips64 \
|
2015-09-22 08:30:05 +00:00
|
|
|
--with-abi=$(call qstrip,$(CONFIG_MIPS64_ABI))) \
|
2016-02-18 08:22:17 +00:00
|
|
|
$(if $(CONFIG_arc),--with-cpu=$(CONFIG_CPU_TYPE)) \
|
2010-07-20 20:57:21 +00:00
|
|
|
--with-gmp=$(TOPDIR)/staging_dir/host \
|
|
|
|
--with-mpfr=$(TOPDIR)/staging_dir/host \
|
2015-03-24 10:06:27 +00:00
|
|
|
--with-mpc=$(TOPDIR)/staging_dir/host \
|
2010-07-20 20:57:21 +00:00
|
|
|
--disable-decimal-float
|
2013-04-01 15:08:38 +00:00
|
|
|
ifneq ($(CONFIG_mips)$(CONFIG_mipsel),)
|
|
|
|
GCC_CONFIGURE += --with-mips-plt
|
2010-07-20 20:57:21 +00:00
|
|
|
endif
|
|
|
|
|
2015-11-25 14:12:44 +00:00
|
|
|
ifndef GCC_VERSION_4_8
|
|
|
|
GCC_CONFIGURE += --with-diagnostics-color=auto-if-env
|
|
|
|
endif
|
|
|
|
|
2018-01-07 16:41:35 +00:00
|
|
|
ifneq ($(CONFIG_GCC_DEFAULT_PIE),)
|
|
|
|
GCC_CONFIGURE+= \
|
|
|
|
--enable-default-pie
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_GCC_DEFAULT_SSP),)
|
|
|
|
GCC_CONFIGURE+= \
|
|
|
|
--enable-default-ssp
|
|
|
|
endif
|
|
|
|
|
2018-01-07 17:47:21 +00:00
|
|
|
ifneq ($(CONFIG_GCC_LIBSSP),)
|
2010-07-20 20:57:21 +00:00
|
|
|
GCC_CONFIGURE+= \
|
|
|
|
--enable-libssp
|
|
|
|
else
|
|
|
|
GCC_CONFIGURE+= \
|
|
|
|
--disable-libssp
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
|
|
|
|
GCC_CONFIGURE+= \
|
|
|
|
--enable-biarch \
|
|
|
|
--enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
|
|
|
|
endif
|
|
|
|
|
2010-12-14 07:57:22 +00:00
|
|
|
ifdef CONFIG_sparc
|
2013-04-01 15:43:23 +00:00
|
|
|
GCC_CONFIGURE+= \
|
|
|
|
--enable-targets=all \
|
|
|
|
--with-long-double-128
|
2010-12-14 07:57:22 +00:00
|
|
|
endif
|
|
|
|
|
2010-07-20 20:57:21 +00:00
|
|
|
ifeq ($(LIBC),uClibc)
|
|
|
|
GCC_CONFIGURE+= \
|
|
|
|
--disable-__cxa_atexit
|
|
|
|
else
|
|
|
|
GCC_CONFIGURE+= \
|
|
|
|
--enable-__cxa_atexit
|
|
|
|
endif
|
|
|
|
|
2011-02-25 16:52:25 +00:00
|
|
|
ifneq ($(GCC_ARCH),)
|
|
|
|
GCC_CONFIGURE+= --with-arch=$(GCC_ARCH)
|
|
|
|
endif
|
|
|
|
|
2014-07-14 20:28:53 +00:00
|
|
|
ifneq ($(CONFIG_SOFT_FLOAT),y)
|
|
|
|
ifeq ($(CONFIG_arm),y)
|
|
|
|
GCC_CONFIGURE+= \
|
|
|
|
--with-float=hard
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-07-15 10:17:20 +00:00
|
|
|
ifeq ($(CONFIG_TARGET_x86)$(CONFIG_USE_GLIBC)$(CONFIG_INSTALL_GCCGO),yyy)
|
|
|
|
TARGET_CFLAGS+=-fno-split-stack
|
|
|
|
endif
|
|
|
|
|
2010-07-20 20:57:21 +00:00
|
|
|
GCC_MAKE:= \
|
|
|
|
export SHELL="$(BASH)"; \
|
2012-11-08 15:08:31 +00:00
|
|
|
$(MAKE) \
|
2012-11-19 23:12:00 +00:00
|
|
|
CFLAGS="$(HOST_CFLAGS)" \
|
2010-07-20 20:57:21 +00:00
|
|
|
CFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \
|
2016-07-15 10:17:20 +00:00
|
|
|
CXXFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \
|
|
|
|
GOCFLAGS_FOR_TARGET="$(TARGET_CFLAGS)"
|
2010-07-20 20:57:21 +00:00
|
|
|
|
2016-07-07 12:12:30 +00:00
|
|
|
define Host/SetToolchainInfo
|
|
|
|
$(SED) 's,TARGET_CROSS=.*,TARGET_CROSS=$(REAL_GNU_TARGET_NAME)-,' $(TOOLCHAIN_DIR)/info.mk
|
|
|
|
$(SED) 's,GCC_VERSION=.*,GCC_VERSION=$(GCC_VERSION),' $(TOOLCHAIN_DIR)/info.mk
|
2010-07-20 20:57:21 +00:00
|
|
|
endef
|
|
|
|
|
2016-07-07 12:12:30 +00:00
|
|
|
ifneq ($(GCC_PREPARE),)
|
|
|
|
define Host/Prepare
|
|
|
|
$(call Host/SetToolchainInfo)
|
|
|
|
$(call Host/Prepare/Default)
|
|
|
|
ln -snf $(GCC_DIR) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
|
|
|
|
$(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_SOURCE_DIR)/
|
|
|
|
$(SED) 's,^MULTILIB_OSDIRNAMES,# MULTILIB_OSDIRNAMES,' $(HOST_SOURCE_DIR)/gcc/config/*/t-*
|
|
|
|
$(SED) 'd' $(HOST_SOURCE_DIR)/gcc/DEV-PHASE
|
|
|
|
$(SED) 's, DATESTAMP,,' $(HOST_SOURCE_DIR)/gcc/version.c
|
|
|
|
#(cd $(HOST_SOURCE_DIR)/libstdc++-v3; autoconf;);
|
|
|
|
$(SED) 's,gcc_no_link=yes,gcc_no_link=no,' $(HOST_SOURCE_DIR)/libstdc++-v3/configure
|
|
|
|
mkdir -p $(GCC_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
else
|
|
|
|
define Host/Prepare
|
|
|
|
mkdir -p $(GCC_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2010-07-20 20:57:21 +00:00
|
|
|
define Host/Configure
|
|
|
|
(cd $(GCC_BUILD_DIR) && rm -f config.cache; \
|
|
|
|
$(GCC_CONFIGURE) \
|
|
|
|
);
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Host/Clean
|
2016-07-07 12:12:30 +00:00
|
|
|
rm -rf $(if $(GCC_PREPARE),$(HOST_SOURCE_DIR)) \
|
2017-05-03 13:01:03 +00:00
|
|
|
$(HOST_BUILD_PREFIX)/stamp/.gcc_* \
|
|
|
|
$(HOST_BUILD_PREFIX)/stamp/.binutils_* \
|
2010-07-20 20:57:21 +00:00
|
|
|
$(GCC_BUILD_DIR) \
|
|
|
|
$(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME) \
|
2010-08-19 12:49:51 +00:00
|
|
|
$(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME) \
|
|
|
|
$(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gc* \
|
|
|
|
$(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-c*
|
2010-07-20 20:57:21 +00:00
|
|
|
endef
|