at91: enable 6.6 testing kernel
[openwrt/staging/pepe2k.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 ifeq ($(PKG_VERSION),2.42)
40 PKG_HASH:=f6e4d41fd5fc778b06b7891457b3620da5ecea1006c6a4a41ae998109f85a800
41 endif
42
43 ifeq ($(PKG_VERSION),2.43.1)
44 PKG_HASH:=13f74202a3c4c51118b797a39ea4200d3f6cfbe224da6d1d95bb938480132dfd
45 endif
46
47 HOST_BUILD_PARALLEL:=1
48
49 PATCH_DIR:=./patches/$(PKG_VERSION)
50
51 include $(INCLUDE_DIR)/toolchain-build.mk
52
53 ifdef CONFIG_GCC_USE_GRAPHITE
54 GRAPHITE_CONFIGURE:= --with-isl=$(STAGING_DIR_HOST)
55 else
56 GRAPHITE_CONFIGURE:= --without-isl --without-cloog
57 endif
58
59 HOST_CONFIGURE_ARGS = \
60 --prefix=$(TOOLCHAIN_DIR) \
61 --build=$(GNU_HOST_NAME) \
62 --host=$(GNU_HOST_NAME) \
63 --target=$(REAL_GNU_TARGET_NAME) \
64 --with-sysroot=$(TOOLCHAIN_DIR) \
65 --with-system-zlib \
66 --with-zstd \
67 --enable-deterministic-archives \
68 --enable-plugins \
69 --enable-lto \
70 --disable-gprofng \
71 --disable-multilib \
72 --disable-werror \
73 --disable-nls \
74 --disable-sim \
75 --disable-gdb \
76 $(GRAPHITE_CONFIGURE) \
77 $(SOFT_FLOAT_CONFIG_OPTION) \
78 $(call qstrip,$(CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS))
79
80 ifneq ($(CONFIG_SSP_SUPPORT),)
81 HOST_CONFIGURE_ARGS+= \
82 --enable-libssp
83 else
84 HOST_CONFIGURE_ARGS+= \
85 --disable-libssp
86 endif
87
88 ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
89 HOST_CONFIGURE_ARGS+= \
90 --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
91 endif
92
93 HOST_CONFIGURE_VARS += \
94 acx_cv_cc_gcc_supports_ada=false
95
96 define Host/Prepare
97 $(call Host/Prepare/Default)
98 ln -snf $(notdir $(HOST_BUILD_DIR)) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
99 $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/
100 endef
101
102 define Host/Compile
103 +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) all
104 endef
105
106 define Host/Install
107 $(MAKE) -C $(HOST_BUILD_DIR) \
108 install
109 $(call FixupLibdir,$(TOOLCHAIN_DIR))
110 $(CP) $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-readelf $(HOST_BUILD_PREFIX)/bin/readelf
111 endef
112
113 define Host/Clean
114 rm -rf \
115 $(HOST_BUILD_DIR) \
116 $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
117 endef
118
119 $(eval $(call HostBuild))