toolchain/binutils: add binutils 2.36.1
[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.32)
19 PKG_HASH:=0ab6c55dd86a92ed561972ba15b9b70a8b9f75557f896446c82e8b36e473ee04
20 endif
21
22 ifeq ($(PKG_VERSION),2.34)
23 PKG_HASH:=f00b0e8803dc9bab1e2165bd568528135be734df3fabf8d0161828cd56028952
24 endif
25
26 ifeq ($(PKG_VERSION),2.35.2)
27 PKG_HASH:=dcd5b0416e7b0a9b24bed76cd8c6c132526805761863150a26d016415b8bdc7b
28 endif
29
30 ifeq ($(PKG_VERSION),2.36.1)
31 PKG_HASH:=e81d9edf373f193af428a0f256674aea62a9d74dfe93f65192d4eae030b0f3b0
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 HOST_CONFIGURE_VARS += \
71 acx_cv_cc_gcc_supports_ada=false
72
73 define Host/Prepare
74 $(call Host/Prepare/Default)
75 ln -snf $(notdir $(HOST_BUILD_DIR)) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
76 $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/
77 $(SED) 's, " Linaro.*,,' $(HOST_BUILD_DIR)/bfd/version.h
78 endef
79
80 define Host/Compile
81 +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) all
82 endef
83
84 define Host/Install
85 mkdir -p $(TOOLCHAIN_DIR)/initial
86 $(MAKE) -C $(HOST_BUILD_DIR) \
87 prefix=$(TOOLCHAIN_DIR)/initial \
88 install
89 $(MAKE) -C $(HOST_BUILD_DIR) \
90 prefix=$(TOOLCHAIN_DIR) \
91 install
92 $(call FixupLibdir,$(TOOLCHAIN_DIR)/initial)
93 $(RM) $(TOOLCHAIN_DIR)/initial/lib/libiberty.a
94 $(CP) $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-readelf $(HOST_BUILD_PREFIX)/bin/readelf
95 # ARC gcc requires extlib.
96 # If extlib is not available in "initial" folder
97 # initial gcc will fail to build libc.
98 if [ -d $(TOOLCHAIN_DIR)/extlib ]; then \
99 $(CP) -r $(TOOLCHAIN_DIR)/extlib $(TOOLCHAIN_DIR)/initial/; \
100 fi
101 endef
102
103 define Host/Clean
104 rm -rf \
105 $(HOST_BUILD_DIR) \
106 $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
107 endef
108
109 $(eval $(call HostBuild))