From 009407e6be898abedb308247a82e4dee525e6570 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Fri, 31 Dec 2010 08:39:01 -0300 Subject: binutils: make it a proper package * Convert binutils to a proper autotargets package * Add version 2.21 and drop version 2.17 * Hook up packaged binutils for target gcc * Build tools are on HOST_DIR now so change it * Move cross/host gcc to HOST_DIR * Drop kludge from commit 3c77bab2eeace3ee675bd745ca335fa3dd1630bb This is fixed in the next commit "gcc: install copies of libgcc, libstdc++ and libgcj to the sysroot" - tested for arm & x86_64 targets. * TARGET_CROSS now pointed to HOST_DIR too [Peter: Config.in tweaks] Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/binutils/binutils.mk | 55 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 package/binutils/binutils.mk (limited to 'package/binutils/binutils.mk') diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk new file mode 100644 index 000000000..5454af89c --- /dev/null +++ b/package/binutils/binutils.mk @@ -0,0 +1,55 @@ +############################################################# +# +# binutils +# +############################################################# + +BINUTILS_VERSION = $(call qstrip,$(BR2_BINUTILS_VERSION)) +BINUTILS_SOURCE = binutils-$(BINUTILS_VERSION).tar.bz2 +BINUTILS_SITE = $(BR2_GNU_MIRROR)/binutils +ifeq ($(ARCH),avr32) +BINUTILS_SITE = ftp://www.at91.com/pub/buildroot +endif +BINUTILS_EXTRA_CONFIG_OPTIONS = $(call qstrip,$(BR2_BINUTILS_EXTRA_CONFIG_OPTIONS)) +BINUTILS_INSTALL_STAGING = YES +BINUTILS_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) + +# We need to specify host & target to avoid breaking ARM EABI +BINUTILS_CONF_OPT = --disable-multilib --disable-werror \ + --host=$(REAL_GNU_TARGET_NAME) \ + --target=$(REAL_GNU_TARGET_NAME) \ + --enable-shared \ + $(BINUTILS_EXTRA_CONFIG_OPTIONS) + +# Install binutils after busybox to prefer full-blown utilities +ifeq ($(BR2_PACKAGE_BUSYBOX),y) +BINUTILS_DEPENDENCIES += busybox +endif + +# "host" binutils should actually be "cross" +# We just keep the convention of "host utility" for now +HOST_BINUTILS_CONF_OPT = --disable-multilib --disable-werror \ + --target=$(REAL_GNU_TARGET_NAME) \ + $(BR2_CONFIGURE_STAGING_SYSROOT) \ + $(BINUTILS_EXTRA_CONFIG_OPTIONS) + +# We just want libbfd, not the full-blown binutils in staging +define BINUTILS_INSTALL_STAGING_CMDS + $(MAKE) -C $(@D)/bfd DESTDIR=$(STAGING_DIR) install +endef + +# only libbfd in the target... +BINUTILS_INSTALL_FROM = $(@D)/bfd + +# unless we want full... +ifeq ($(BR2_PACKAGE_BINUTILS_TARGET),y) +BINUTILS_INSTALL_FROM = $(@D) +endif + +define BINUTILS_INSTALL_TARGET_CMDS + $(TARGET_MAKE_ENV) $(MAKE) -C $(BINUTILS_INSTALL_FROM) \ + DESTDIR=$(TARGET_DIR) install +endef + +$(eval $(call AUTOTARGETS,package,binutils)) +$(eval $(call AUTOTARGETS,package,binutils,host)) -- cgit v1.2.3