From f71c95762d0b12e6ee45a77b4c9c740ff0343779 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 15 Feb 2012 13:12:08 -0500 Subject: [PATCH] binutils: Fix cross-compiling issue. Because of a wrong configuration of --host, --build and --target the package was not correctly built and the linker was missing. Additionally to this change, support for plugins was enabled, the bugurl set and 64-bit-bfd is enabled, too. --- binutils/binutils.nm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/binutils/binutils.nm b/binutils/binutils.nm index 2ed2fd151..290baf0ef 100644 --- a/binutils/binutils.nm +++ b/binutils/binutils.nm @@ -5,7 +5,7 @@ name = binutils version = 2.22 -release = 2 +release = 3 maintainer = Michael Tremer groups = Development/Tools @@ -42,9 +42,14 @@ build end configure_options += \ + --build=%{DISTRO_BUILDTARGET} \ + --host=%{DISTRO_BUILDTARGET} \ --target=%{DISTRO_BUILDTARGET} \ --disable-werror \ - --disable-static + --disable-static \ + --enable-64-bit-bfd \ + --enable-plugins \ + --with-bugurl="http://bugzilla.ipfire.org/" build cd %{DIR_SRC}/binutils-build -- 2.39.5