Enable little endian support when configuring for 64-bit PowerPC.

Resolves: #1275709
This commit is contained in:
Nick Clifton 2015-10-28 11:46:46 +00:00
parent 2143cbc355
commit b39776830b
1 changed files with 10 additions and 1 deletions

View File

@ -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 <nickc@redhat.com> 2.25.1-8
- Enable little endian support when configuring for 64-bit PowerPC.
(#1275709)
* Thu Sep 24 2015 Nick Clifton <nickc@redhat.com> 2.25.1-7
- Fix incorrectly generated binaries and DSOs on PPC platforms.
(#1247126)