From b39776830bc273c7ad31252b71e68ede4841f1fd Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Oct 28 2015 11:46:46 +0000 Subject: Enable little endian support when configuring for 64-bit PowerPC. Resolves: #1275709 --- diff --git a/binutils.spec b/binutils.spec index a8d7781..f48f1b8 100644 --- a/binutils.spec +++ b/binutils.spec @@ -20,7 +20,7 @@ Summary: A GNU collection of binary utilities Name: %{?cross}binutils%{?_with_debug:-debug} Version: 2.25.1 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils @@ -244,6 +244,11 @@ case %{binutils_target} in ppc*|ppc64*) ;; esac +case %{binutils_target} in ppc64-*) + CARGS="$CARGS --enable-targets=powerpc64le-linux" + ;; +esac + case %{binutils_target} in ppc64le*) CARGS="$CARGS --enable-targets=powerpc-linux" ;; @@ -501,6 +506,10 @@ exit 0 %endif # %{isnative} %changelog +* Wed Oct 28 2015 Nick Clifton 2.25.1-8 +- Enable little endian support when configuring for 64-bit PowerPC. + (#1275709) + * Thu Sep 24 2015 Nick Clifton 2.25.1-7 - Fix incorrectly generated binaries and DSOs on PPC platforms. (#1247126)