| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- #
- # 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.42)
- PKG_HASH:=f6e4d41fd5fc778b06b7891457b3620da5ecea1006c6a4a41ae998109f85a800
- endif
- ifeq ($(PKG_VERSION),2.43.1)
- PKG_HASH:=13f74202a3c4c51118b797a39ea4200d3f6cfbe224da6d1d95bb938480132dfd
- endif
- ifeq ($(PKG_VERSION),2.44)
- PKG_HASH:=ce2017e059d63e67ddb9240e9d4ec49c2893605035cd60e92ad53177f4377237
- endif
- ifeq ($(PKG_VERSION),2.45)
- PKG_HASH:=c50c0e7f9cb188980e2cc97e4537626b1672441815587f1eab69d2a1bfbef5d2
- 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))
|