mirror of
				https://github.com/hzyitc/openwrt-redmi-ax3000
				synced 2025-10-30 07:50:32 +08:00 
			
		
		
		
	 3b54f821d0
			
		
	
	3b54f821d0
	
	
	
		
			
			This is what66dfbca262(updated by2872ff7be1) did for toolchain/gdb, but for toolchain/binutils, following the switch to binutils-2.44 by default in854d88be8a. Signed-off-by: Mark Mentovai <mark@mentovai.com> Link: https://github.com/openwrt/openwrt/pull/19833 Signed-off-by: Robert Marko <robimarko@gmail.com>
		
			
				
	
	
		
			111 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
		
			2.6 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.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
 | |
| 
 | |
| export ZSTD_CFLAGS=-I$(STAGING_DIR_HOST)/include -pthread
 | |
| export ZSTD_LIBS=-L$(STAGING_DIR_HOST)/lib -lzstd -lpthread
 | |
| 
 | |
| 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))
 |