toolchain: assign PKG_CPE_ID
[openwrt/staging/hauke.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.37)
20 PKG_HASH:=820d9724f020a3e69cb337893a0b63c2db161dadcb0e06fc11dc29eb1e84a32c
21 endif
22
23 ifeq ($(PKG_VERSION),2.38)
24 PKG_HASH:=e316477a914f567eccc34d5d29785b8b0f5a10208d36bbacedcc39048ecfe024
25 endif
26
27 ifeq ($(PKG_VERSION),2.39)
28 PKG_HASH:=645c25f563b8adc0a81dbd6a41cffbf4d37083a382e02d5d3df4f65c09516d00
29 endif
30
31 ifeq ($(PKG_VERSION),2.40)
32 PKG_HASH:=0f8a4c272d7f17f369ded10a4aca28b8e304828e95526da482b0ccc4dfc9d8e1
33 endif
34
35 ifeq ($(PKG_VERSION),2.41)
36 PKG_HASH:=ae9a5789e23459e59606e6714723f2d3ffc31c03174191ef0d015bdf06007450
37 endif
38
39 HOST_BUILD_PARALLEL:=1
40
41 PATCH_DIR:=./patches/$(PKG_VERSION)
42
43 include $(INCLUDE_DIR)/toolchain-build.mk
44
45 ifdef CONFIG_GCC_USE_GRAPHITE
46 GRAPHITE_CONFIGURE:= --with-isl=$(STAGING_DIR_HOST)
47 else
48 GRAPHITE_CONFIGURE:= --without-isl --without-cloog
49 endif
50
51 HOST_CONFIGURE_ARGS = \
52 --prefix=$(TOOLCHAIN_DIR) \
53 --build=$(GNU_HOST_NAME) \
54 --host=$(GNU_HOST_NAME) \
55 --target=$(REAL_GNU_TARGET_NAME) \
56 --with-sysroot=$(TOOLCHAIN_DIR) \
57 --with-system-zlib \
58 --with-zstd \
59 --enable-deterministic-archives \
60 --enable-plugins \
61 --enable-lto \
62 --disable-gprofng \
63 --disable-multilib \
64 --disable-werror \
65 --disable-nls \
66 --disable-sim \
67 --disable-gdb \
68 $(GRAPHITE_CONFIGURE) \
69 $(SOFT_FLOAT_CONFIG_OPTION) \
70 $(call qstrip,$(CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS))
71
72 ifneq ($(CONFIG_SSP_SUPPORT),)
73 HOST_CONFIGURE_ARGS+= \
74 --enable-libssp
75 else
76 HOST_CONFIGURE_ARGS+= \
77 --disable-libssp
78 endif
79
80 ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
81 HOST_CONFIGURE_ARGS+= \
82 --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
83 endif
84
85 HOST_CONFIGURE_VARS += \
86 acx_cv_cc_gcc_supports_ada=false
87
88 define Host/Prepare
89 $(call Host/Prepare/Default)
90 ln -snf $(notdir $(HOST_BUILD_DIR)) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
91 $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/
92 endef
93
94 define Host/Compile
95 +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) all
96 endef
97
98 define Host/Install
99 $(MAKE) -C $(HOST_BUILD_DIR) \
100 install
101 $(call FixupLibdir,$(TOOLCHAIN_DIR))
102 $(CP) $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-readelf $(HOST_BUILD_PREFIX)/bin/readelf
103 endef
104
105 define Host/Clean
106 rm -rf \
107 $(HOST_BUILD_DIR) \
108 $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
109 endef
110
111 $(eval $(call HostBuild))