mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-21 12:45:19 +00:00
72731b445e
Reduce supported versions to 3. Since 2.40 is supported by previous release, this commit keeps it. Signed-off-by: Yanase Yuki <dev@zpc.st> Link: https://github.com/openwrt/openwrt/pull/16597 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
104 lines
2.4 KiB
Makefile
104 lines
2.4 KiB
Makefile
#
|
|
# Copyright (C) 2006-2013 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=binutils
|
|
PKG_VERSION:=$(call qstrip,$(CONFIG_BINUTILS_VERSION))
|
|
BIN_VERSION:=$(PKG_VERSION)
|
|
|
|
PKG_SOURCE_URL:=@GNU/binutils/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_CPE_ID:=cpe:/a:gnu:binutils
|
|
|
|
TAR_OPTIONS += --exclude='*.rej'
|
|
|
|
ifeq ($(PKG_VERSION),2.40)
|
|
PKG_HASH:=0f8a4c272d7f17f369ded10a4aca28b8e304828e95526da482b0ccc4dfc9d8e1
|
|
endif
|
|
|
|
ifeq ($(PKG_VERSION),2.42)
|
|
PKG_HASH:=f6e4d41fd5fc778b06b7891457b3620da5ecea1006c6a4a41ae998109f85a800
|
|
endif
|
|
|
|
ifeq ($(PKG_VERSION),2.43.1)
|
|
PKG_HASH:=13f74202a3c4c51118b797a39ea4200d3f6cfbe224da6d1d95bb938480132dfd
|
|
endif
|
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
PATCH_DIR:=./patches/$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/toolchain-build.mk
|
|
|
|
ifdef CONFIG_GCC_USE_GRAPHITE
|
|
GRAPHITE_CONFIGURE:= --with-isl=$(STAGING_DIR_HOST)
|
|
else
|
|
GRAPHITE_CONFIGURE:= --without-isl --without-cloog
|
|
endif
|
|
|
|
HOST_CONFIGURE_ARGS = \
|
|
--prefix=$(TOOLCHAIN_DIR) \
|
|
--build=$(GNU_HOST_NAME) \
|
|
--host=$(GNU_HOST_NAME) \
|
|
--target=$(REAL_GNU_TARGET_NAME) \
|
|
--with-sysroot=$(TOOLCHAIN_DIR) \
|
|
--with-system-zlib \
|
|
--with-zstd \
|
|
--enable-deterministic-archives \
|
|
--enable-plugins \
|
|
--enable-lto \
|
|
--disable-gprofng \
|
|
--disable-multilib \
|
|
--disable-werror \
|
|
--disable-nls \
|
|
--disable-sim \
|
|
--disable-gdb \
|
|
$(GRAPHITE_CONFIGURE) \
|
|
$(SOFT_FLOAT_CONFIG_OPTION) \
|
|
$(call qstrip,$(CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS))
|
|
|
|
ifneq ($(CONFIG_SSP_SUPPORT),)
|
|
HOST_CONFIGURE_ARGS+= \
|
|
--enable-libssp
|
|
else
|
|
HOST_CONFIGURE_ARGS+= \
|
|
--disable-libssp
|
|
endif
|
|
|
|
ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
|
|
HOST_CONFIGURE_ARGS+= \
|
|
--enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
|
|
endif
|
|
|
|
HOST_CONFIGURE_VARS += \
|
|
acx_cv_cc_gcc_supports_ada=false
|
|
|
|
define Host/Prepare
|
|
$(call Host/Prepare/Default)
|
|
ln -snf $(notdir $(HOST_BUILD_DIR)) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
|
|
$(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/
|
|
endef
|
|
|
|
define Host/Compile
|
|
+$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) all
|
|
endef
|
|
|
|
define Host/Install
|
|
$(MAKE) -C $(HOST_BUILD_DIR) \
|
|
install
|
|
$(call FixupLibdir,$(TOOLCHAIN_DIR))
|
|
$(CP) $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-readelf $(HOST_BUILD_PREFIX)/bin/readelf
|
|
endef
|
|
|
|
define Host/Clean
|
|
rm -rf \
|
|
$(HOST_BUILD_DIR) \
|
|
$(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|