toolchain/binutils: switch to version 2.37 by default
[openwrt/staging/nbd.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 ifeq ($(PKG_VERSION),2.37)
35 PKG_HASH:=820d9724f020a3e69cb337893a0b63c2db161dadcb0e06fc11dc29eb1e84a32c
36 endif
37
38 HOST_BUILD_PARALLEL:=1
39
40 PATCH_DIR:=./patches/$(PKG_VERSION)
41
42 include $(INCLUDE_DIR)/toolchain-build.mk
43
44 HOST_CONFIGURE_ARGS = \
45 --prefix=$(TOOLCHAIN_DIR) \
46 --build=$(GNU_HOST_NAME) \
47 --host=$(GNU_HOST_NAME) \
48 --target=$(REAL_GNU_TARGET_NAME) \
49 --with-sysroot=$(TOOLCHAIN_DIR) \
50 --enable-deterministic-archives \
51 --enable-plugins \
52 --disable-multilib \
53 --disable-werror \
54 --disable-nls \
55 --disable-sim \
56 --disable-gdb \
57 $(GRAPHITE_CONFIGURE) \
58 $(SOFT_FLOAT_CONFIG_OPTION) \
59 $(call qstrip,$(CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS))
60
61 ifneq ($(CONFIG_SSP_SUPPORT),)
62 HOST_CONFIGURE_ARGS+= \
63 --enable-libssp
64 else
65 HOST_CONFIGURE_ARGS+= \
66 --disable-libssp
67 endif
68
69 ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
70 HOST_CONFIGURE_ARGS+= \
71 --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
72 endif
73
74 HOST_CONFIGURE_VARS += \
75 acx_cv_cc_gcc_supports_ada=false
76
77 define Host/Prepare
78 $(call Host/Prepare/Default)
79 ln -snf $(notdir $(HOST_BUILD_DIR)) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
80 $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/
81 $(SED) 's, " Linaro.*,,' $(HOST_BUILD_DIR)/bfd/version.h
82 endef
83
84 define Host/Compile
85 +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) all
86 endef
87
88 define Host/Install
89 mkdir -p $(TOOLCHAIN_DIR)/initial
90 $(MAKE) -C $(HOST_BUILD_DIR) \
91 prefix=$(TOOLCHAIN_DIR)/initial \
92 install
93 $(MAKE) -C $(HOST_BUILD_DIR) \
94 prefix=$(TOOLCHAIN_DIR) \
95 install
96 $(call FixupLibdir,$(TOOLCHAIN_DIR)/initial)
97 $(RM) $(TOOLCHAIN_DIR)/initial/lib/libiberty.a
98 $(CP) $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-readelf $(HOST_BUILD_PREFIX)/bin/readelf
99 # ARC gcc requires extlib.
100 # If extlib is not available in "initial" folder
101 # initial gcc will fail to build libc.
102 if [ -d $(TOOLCHAIN_DIR)/extlib ]; then \
103 $(CP) -r $(TOOLCHAIN_DIR)/extlib $(TOOLCHAIN_DIR)/initial/; \
104 fi
105 endef
106
107 define Host/Clean
108 rm -rf \
109 $(HOST_BUILD_DIR) \
110 $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
111 endef
112
113 $(eval $(call HostBuild))