toolchain/binutils: Add binutils 2.34
[openwrt/openwrt.git] / toolchain / binutils / Makefile
1 #
2 # Copyright (C) 2006-2013 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=binutils
10 PKG_VERSION:=$(call qstrip,$(CONFIG_BINUTILS_VERSION))
11 BIN_VERSION:=$(PKG_VERSION)
12
13 PKG_SOURCE_URL:=@GNU/binutils/
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
15
16 TAR_OPTIONS += --exclude='*.rej'
17
18 ifeq ($(PKG_VERSION),2.29.1)
19 PKG_HASH:=e7010a46969f9d3e53b650a518663f98a5dde3c3ae21b7d71e5e6803bc36b577
20 endif
21
22 ifeq ($(PKG_VERSION),2.31.1)
23 PKG_HASH:=5d20086ecf5752cc7d9134246e9588fa201740d540f7eb84d795b1f7a93bca86
24 endif
25
26 ifeq ($(PKG_VERSION),2.32)
27 PKG_HASH:=0ab6c55dd86a92ed561972ba15b9b70a8b9f75557f896446c82e8b36e473ee04
28 endif
29
30 ifeq ($(PKG_VERSION),2.34)
31 PKG_HASH:=f00b0e8803dc9bab1e2165bd568528135be734df3fabf8d0161828cd56028952
32 endif
33
34 HOST_BUILD_PARALLEL:=1
35
36 PATCH_DIR:=./patches/$(PKG_VERSION)
37
38 include $(INCLUDE_DIR)/toolchain-build.mk
39
40 HOST_CONFIGURE_ARGS = \
41 --prefix=$(TOOLCHAIN_DIR) \
42 --build=$(GNU_HOST_NAME) \
43 --host=$(GNU_HOST_NAME) \
44 --target=$(REAL_GNU_TARGET_NAME) \
45 --with-sysroot=$(TOOLCHAIN_DIR) \
46 --enable-deterministic-archives \
47 --enable-plugins \
48 --disable-multilib \
49 --disable-werror \
50 --disable-nls \
51 --disable-sim \
52 --disable-gdb \
53 $(GRAPHITE_CONFIGURE) \
54 $(SOFT_FLOAT_CONFIG_OPTION) \
55 $(call qstrip,$(CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS))
56
57 ifneq ($(CONFIG_SSP_SUPPORT),)
58 HOST_CONFIGURE_ARGS+= \
59 --enable-libssp
60 else
61 HOST_CONFIGURE_ARGS+= \
62 --disable-libssp
63 endif
64
65 ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
66 HOST_CONFIGURE_ARGS+= \
67 --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
68 endif
69
70 define Host/Prepare
71 $(call Host/Prepare/Default)
72 ln -snf $(notdir $(HOST_BUILD_DIR)) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
73 $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/
74 $(SED) 's, " Linaro.*,,' $(HOST_BUILD_DIR)/bfd/version.h
75 endef
76
77 define Host/Compile
78 +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) all
79 endef
80
81 define Host/Install
82 mkdir -p $(TOOLCHAIN_DIR)/initial
83 $(MAKE) -C $(HOST_BUILD_DIR) \
84 prefix=$(TOOLCHAIN_DIR)/initial \
85 install
86 $(MAKE) -C $(HOST_BUILD_DIR) \
87 prefix=$(TOOLCHAIN_DIR) \
88 install
89 $(call FixupLibdir,$(TOOLCHAIN_DIR)/initial)
90 $(RM) $(TOOLCHAIN_DIR)/initial/lib/libiberty.a
91 $(CP) $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-readelf $(HOST_BUILD_PREFIX)/bin/readelf
92 # ARC gcc requires extlib.
93 # If extlib is not available in "initial" folder
94 # initial gcc will fail to build libc.
95 if [ -d $(TOOLCHAIN_DIR)/extlib ]; then \
96 $(CP) -r $(TOOLCHAIN_DIR)/extlib $(TOOLCHAIN_DIR)/initial/; \
97 fi
98 endef
99
100 define Host/Clean
101 rm -rf \
102 $(HOST_BUILD_DIR) \
103 $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
104 endef
105
106 $(eval $(call HostBuild))