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