From 7d3512870eee922c8cb60b031e25a85902f73810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E9=B9=8F?= Date: Wed, 13 Mar 2024 11:22:08 +0800 Subject: [PATCH] add ppc64le support to fix error about gold (cherry picked from commit 7a11df05671a57df8eda7e49b361e3974a8c721e) --- binutils.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/binutils.spec b/binutils.spec index 780bab7..4f47bef 100644 --- a/binutils.spec +++ b/binutils.spec @@ -2,7 +2,7 @@ Summary: A GNU collection of binary utilities Name: binutils%{?_with_debug:-debug} Version: 2.41 -Release: 3 +Release: 4 License: GPL-3.0-or-later AND (GPL-3.0-or-later WITH Bison-exception-2.2) AND (LGPL-2.0-or-later WITH GCC-exception-2.0) AND BSD-3-Clause AND GFDL-1.3-or-later AND GPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-2.0-or-later URL: https://sourceware.org/binutils @@ -677,10 +677,10 @@ run_target_configuration() TARGS="--enable-targets=ia64-linux,x86_64-pep" ;; ppc64-*) - TARGS="--enable-targets=powerpc64le-linux,spu,x86_64-pep" + TARGS="--enable-targets=powerpc64le-linux,x86_64-pep" ;; ppc64le*) - TARGS="--enable-targets=powerpc-linux,spu,x86_64-pep" + TARGS="--enable-targets=powerpc-linux,x86_64-pep" ;; *) TARGS="--enable-targets=x86_64-pep" @@ -1266,6 +1266,9 @@ exit 0 #---------------------------------------------------------------------------- %changelog +* Wed Mar 13 2024 peng.zou - 2.41-4 +- add ppc64le support to fix error about gold + * Wed Mar 6 2024 Wenlong Zhang - 2.41-3 - LoongArch: sync patch from binutils upstream - LoongArch: Modify inconsistent behavior of ld with --unresolved-symbols=ignore-all -- Gitee