Root/toolchain/binutils/Makefile

1#
2# Copyright (C) 2006-2012 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:=binutils
10PKG_VERSION:=$(call qstrip,$(CONFIG_BINUTILS_VERSION))
11BIN_VERSION:=$(PKG_VERSION)
12
13PKG_SOURCE_URL:=@GNU/binutils/
14PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15
16ifeq ($(PKG_VERSION),2.19.1)
17  PKG_MD5SUM:=09a8c5821a2dfdbb20665bc0bd680791
18endif
19ifeq ($(PKG_VERSION),2.20.1)
20  PKG_MD5SUM:=9cdfb9d6ec0578c166d3beae5e15c4e5
21endif
22ifeq ($(PKG_VERSION),2.21)
23  PKG_MD5SUM:=c84c5acc9d266f1a7044b51c85a823f5
24endif
25ifeq ($(PKG_VERSION),2.21.1)
26  PKG_MD5SUM:=bde820eac53fa3a8d8696667418557ad
27endif
28ifeq ($(PKG_VERSION),2.22)
29  PKG_MD5SUM:=ee0f10756c84979622b992a4a61ea3f5
30endif
31
32PATCH_DIR:=./patches/$(PKG_VERSION)
33
34REAL_STAGING_DIR_HOST:=$(STAGING_DIR_HOST)
35
36include $(INCLUDE_DIR)/toolchain-build.mk
37
38BINUTILS_CONFIGURE:= \
39    ./configure \
40        --prefix=$(TOOLCHAIN_DIR) \
41        --build=$(GNU_HOST_NAME) \
42        --host=$(GNU_HOST_NAME) \
43        --target=$(REAL_GNU_TARGET_NAME) \
44        --with-sysroot=$(TOOLCHAIN_DIR) \
45        --disable-multilib \
46        --disable-werror \
47        --disable-nls \
48        $(GRAPHITE_CONFIGURE) \
49        $(SOFT_FLOAT_CONFIG_OPTION) \
50        $(call qstrip,$(CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS))
51
52ifneq ($(CONFIG_SSP_SUPPORT),)
53  BINUTILS_CONFIGURE+= \
54        --enable-libssp
55else
56  BINUTILS_CONFIGURE+= \
57        --disable-libssp
58endif
59
60ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
61  BINUTILS_CONFIGURE+= \
62        --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
63endif
64
65define Host/Prepare
66    $(call Host/Prepare/Default)
67    ln -snf $(PKG_NAME)-$(PKG_VERSION) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
68    $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/
69endef
70
71define Host/Configure
72    (cd $(HOST_BUILD_DIR); \
73        $(BINUTILS_CONFIGURE) \
74    );
75endef
76
77define Host/Compile
78    $(MAKE) $(TOOLCHAIN_JOBS) -C $(HOST_BUILD_DIR) all
79endef
80
81define Host/Install
82    $(MAKE) -C $(HOST_BUILD_DIR) install
83    $(CP) $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-readelf $(REAL_STAGING_DIR_HOST)/bin/readelf
84endef
85
86define Host/Clean
87    rm -rf \
88        $(HOST_BUILD_DIR) \
89        $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
90endef
91
92$(eval $(call HostBuild))
93

Archive Download this file



interactive