b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 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 | PKG_CPE_ID:=cpe:/a:gnu:gcc |
| 32 | |
| 33 | ifeq ($(PKG_VERSION),11.3.0) |
| 34 | PKG_HASH:=b47cf2818691f5b1e21df2bb38c795fac2cfbd640ede2d0a5e1c89e338a3ac39 |
| 35 | endif |
| 36 | |
| 37 | ifeq ($(PKG_VERSION),12.3.0) |
| 38 | PKG_HASH:=949a5d4f99e786421a93b532b22ffab5578de7321369975b91aec97adfda8c3b |
| 39 | endif |
| 40 | |
| 41 | ifeq ($(PKG_VERSION),13.3.0) |
| 42 | PKG_HASH:=0845e9621c9543a13f484e94584a49ffc0129970e9914624235fc1d061a0c083 |
| 43 | endif |
| 44 | |
| 45 | ifeq ($(PKG_VERSION),14.2.0) |
| 46 | PKG_HASH:=a7b39bc69cbf9e25826c5a60ab26477001f7c08d85cec04bc0e29cabed6f3cc9 |
| 47 | endif |
| 48 | |
| 49 | PATCH_DIR=../patches-$(GCC_MAJOR_VERSION).x |
| 50 | |
| 51 | BUGURL=http://bugs.openwrt.org/ |
| 52 | PKGVERSION=OpenWrt 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:=$(HOST_BUILD_PREFIX)/stamp/.gcc_$(GCC_VARIANT)_installed |
| 70 | |
| 71 | SEP:=, |
| 72 | TARGET_LANGUAGES:="c,c++$(if $(CONFIG_INSTALL_GFORTRAN),$(SEP)fortran)$(if $(CONFIG_INSTALL_GCCGO),$(SEP)go)" |
| 73 | |
| 74 | TAR_OPTIONS += \ |
| 75 | --exclude-from='$(CURDIR)/../exclude-testsuite' --exclude=gcc/ada/*.ad* \ |
| 76 | --exclude=libjava |
| 77 | |
| 78 | # this needs to be without -L/-lzstd flags or other parts fail to build |
| 79 | # use an absolute path to ensure it really picks up our version |
| 80 | export ac_cv_search_ZSTD_compress=$(STAGING_DIR_HOST)/lib/libzstd.a -pthread |
| 81 | export libgcc_cv_fixed_point=no |
| 82 | ifdef CONFIG_INSTALL_GCCGO |
| 83 | export libgo_cv_c_split_stack_supported=no |
| 84 | endif |
| 85 | |
| 86 | ifdef CONFIG_GCC_USE_GRAPHITE |
| 87 | GRAPHITE_CONFIGURE:= --with-isl=$(STAGING_DIR_HOST) |
| 88 | else |
| 89 | GRAPHITE_CONFIGURE:= --without-isl --without-cloog |
| 90 | endif |
| 91 | |
| 92 | GCC_CONFIGURE:= \ |
| 93 | SHELL="$(BASH)" \ |
| 94 | $(HOST_SOURCE_DIR)/configure \ |
| 95 | --with-bugurl=$(BUGURL) \ |
| 96 | --with-pkgversion="$(PKGVERSION)" \ |
| 97 | --prefix=$(TOOLCHAIN_DIR) \ |
| 98 | --build=$(GNU_HOST_NAME) \ |
| 99 | --host=$(GNU_HOST_NAME) \ |
| 100 | --target=$(REAL_GNU_TARGET_NAME) \ |
| 101 | --with-gnu-ld \ |
| 102 | --enable-target-optspace \ |
| 103 | --disable-libgomp \ |
| 104 | --disable-libmudflap \ |
| 105 | --disable-multilib \ |
| 106 | --disable-libmpx \ |
| 107 | --disable-nls \ |
| 108 | --disable-libssp \ |
| 109 | $(GRAPHITE_CONFIGURE) \ |
| 110 | --with-host-libstdcxx=-lstdc++ \ |
| 111 | $(SOFT_FLOAT_CONFIG_OPTION) \ |
| 112 | $(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \ |
| 113 | $(if $(CONFIG_mips64)$(CONFIG_mips64el),--with-arch=mips64 \ |
| 114 | --with-abi=$(call qstrip,$(CONFIG_MIPS64_ABI))) \ |
| 115 | $(if $(CONFIG_arc),--with-cpu=$(CONFIG_CPU_TYPE)) \ |
| 116 | $(if $(CONFIG_powerpc64), $(if $(CONFIG_USE_MUSL),--with-abi=elfv2)) \ |
| 117 | --with-system-zlib=$(STAGING_DIR_HOST) \ |
| 118 | --with-zstd=$(STAGING_DIR_HOST) \ |
| 119 | --with-gmp=$(STAGING_DIR_HOST) \ |
| 120 | --with-mpfr=$(STAGING_DIR_HOST) \ |
| 121 | --with-mpc=$(STAGING_DIR_HOST) \ |
| 122 | --disable-decimal-float \ |
| 123 | --with-diagnostics-color=auto-if-env \ |
| 124 | --enable-__cxa_atexit \ |
| 125 | --enable-libstdcxx-dual-abi \ |
| 126 | --with-default-libstdcxx-abi=new |
| 127 | ifneq ($(CONFIG_mips)$(CONFIG_mipsel),) |
| 128 | GCC_CONFIGURE += --with-mips-plt |
| 129 | endif |
| 130 | |
| 131 | ifneq ($(CONFIG_GCC_DEFAULT_PIE),) |
| 132 | GCC_CONFIGURE+= \ |
| 133 | --enable-default-pie |
| 134 | endif |
| 135 | |
| 136 | ifneq ($(CONFIG_GCC_DEFAULT_SSP),) |
| 137 | GCC_CONFIGURE+= \ |
| 138 | --enable-default-ssp |
| 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 | ifneq ($(GCC_ARCH),) |
| 154 | GCC_CONFIGURE+= --with-arch=$(GCC_ARCH) |
| 155 | endif |
| 156 | |
| 157 | ifeq ($(CONFIG_arm),y) |
| 158 | GCC_CONFIGURE+= \ |
| 159 | --with-cpu=$(word 1, $(subst +," ,$(CONFIG_CPU_TYPE))) |
| 160 | |
| 161 | ifneq ($(CONFIG_SOFT_FLOAT),y) |
| 162 | GCC_CONFIGURE+= \ |
| 163 | --with-fpu=$(word 2, $(subst +, ",$(CONFIG_CPU_TYPE))) \ |
| 164 | --with-float=hard |
| 165 | endif |
| 166 | |
| 167 | # Do not let TARGET_CFLAGS get poisoned by extra CPU optimization flags |
| 168 | # that do not belong here. The cpu,fpu type should be specified via |
| 169 | # --with-cpu and --with-fpu for ARM and not CFLAGS. |
| 170 | TARGET_CFLAGS:=$(filter-out -m%,$(call qstrip,$(TARGET_CFLAGS))) |
| 171 | endif |
| 172 | |
| 173 | ifeq ($(CONFIG_TARGET_x86)$(CONFIG_USE_GLIBC)$(CONFIG_INSTALL_GCCGO),yyy) |
| 174 | TARGET_CFLAGS+=-fno-split-stack |
| 175 | endif |
| 176 | |
| 177 | TARGET_CFLAGS := $(filter-out -D_TIME_BITS=64 -D_FILE_OFFSET_BITS=64,$(TARGET_CFLAGS)) |
| 178 | |
| 179 | CFLAGS:=$(HOST_CFLAGS) -pipe |
| 180 | ifneq ($(shell gcc --version 2>&1 | grep -E "Apple.(LLVM|clang)"),) |
| 181 | CFLAGS+= -fbracket-depth=512 |
| 182 | endif |
| 183 | |
| 184 | GCC_CONFIGURE+= \ |
| 185 | CFLAGS="$(CFLAGS)" \ |
| 186 | CXXFLAGS="$(CFLAGS)" \ |
| 187 | CFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \ |
| 188 | CXXFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \ |
| 189 | GOCFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" |
| 190 | |
| 191 | GCC_MAKE:= \ |
| 192 | export SHELL="$(BASH)"; \ |
| 193 | $(MAKE) |
| 194 | |
| 195 | define Host/SetToolchainInfo |
| 196 | $(SED) 's,TARGET_CROSS=.*,TARGET_CROSS=$(REAL_GNU_TARGET_NAME)-,' $(TOOLCHAIN_DIR)/info.mk |
| 197 | $(SED) 's,GCC_VERSION=.*,GCC_VERSION=$(GCC_VERSION),' $(TOOLCHAIN_DIR)/info.mk |
| 198 | endef |
| 199 | |
| 200 | |
| 201 | ifeq ($(GCC_MAJOR_VERSION),11) |
| 202 | GCC_VERSION_FILE:=gcc/version.c |
| 203 | else |
| 204 | GCC_VERSION_FILE:=gcc/genversion.cc |
| 205 | endif |
| 206 | |
| 207 | ifneq ($(GCC_PREPARE),) |
| 208 | define Host/Prepare |
| 209 | $(call Host/SetToolchainInfo) |
| 210 | $(call Host/Prepare/Default) |
| 211 | ln -snf $(GCC_DIR) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME) |
| 212 | $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_SOURCE_DIR)/ |
| 213 | $(SED) 's,^MULTILIB_OSDIRNAMES,# MULTILIB_OSDIRNAMES,' $(HOST_SOURCE_DIR)/gcc/config/*/t-* |
| 214 | $(SED) 'd' $(HOST_SOURCE_DIR)/gcc/DEV-PHASE |
| 215 | $(SED) 's, DATESTAMP,,' $(HOST_SOURCE_DIR)/$(GCC_VERSION_FILE) |
| 216 | $(SED) 's,gcc_no_link=yes,gcc_no_link=no,' $(HOST_SOURCE_DIR)/libstdc++-v3/configure |
| 217 | mkdir -p $(GCC_BUILD_DIR) |
| 218 | endef |
| 219 | else |
| 220 | define Host/Prepare |
| 221 | mkdir -p $(GCC_BUILD_DIR) |
| 222 | endef |
| 223 | endif |
| 224 | |
| 225 | define Host/Configure |
| 226 | (cd $(GCC_BUILD_DIR) && rm -f config.cache; \ |
| 227 | $(GCC_CONFIGURE) \ |
| 228 | ); |
| 229 | endef |
| 230 | |
| 231 | define Host/Clean |
| 232 | rm -rf $(if $(GCC_PREPARE),$(HOST_SOURCE_DIR)) \ |
| 233 | $(HOST_BUILD_PREFIX)/stamp/.gcc_* \ |
| 234 | $(HOST_BUILD_PREFIX)/stamp/.binutils_* \ |
| 235 | $(GCC_BUILD_DIR) \ |
| 236 | $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME) \ |
| 237 | $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME) \ |
| 238 | $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gc* \ |
| 239 | $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-c* |
| 240 | endef |