cf65e83e6fdabe67002f995efed38b399337275a
[openwrt/staging/svanheule.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.37)
19 PKG_HASH:=820d9724f020a3e69cb337893a0b63c2db161dadcb0e06fc11dc29eb1e84a32c
20 endif
21
22 ifeq ($(PKG_VERSION),2.38)
23 PKG_HASH:=e316477a914f567eccc34d5d29785b8b0f5a10208d36bbacedcc39048ecfe024
24 endif
25
26 ifeq ($(PKG_VERSION),2.39)
27 PKG_HASH:=645c25f563b8adc0a81dbd6a41cffbf4d37083a382e02d5d3df4f65c09516d00
28 endif
29
30 ifeq ($(PKG_VERSION),2.40)
31 PKG_HASH:=0f8a4c272d7f17f369ded10a4aca28b8e304828e95526da482b0ccc4dfc9d8e1
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))