From c9bf6af6067391f6fb5027b2e8a9a0ee51d3064e Mon Sep 17 00:00:00 2001 From: Arjun Shankar Date: Thu, 18 Jul 2024 14:32:52 +0200 Subject: [PATCH] ppc64le: Build early startup code with -mcpu=power8 The --with-rtld-early-cflags configure option was being passed for ppc64 builds instead of for ppc64le. This commit fixes that. --- glibc.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/glibc.spec b/glibc.spec index b26bb57..fb84a86 100644 --- a/glibc.spec +++ b/glibc.spec @@ -169,7 +169,7 @@ Version: %{glibcversion} # - It allows using the Release number without the %%dist tag in the dependency # generator to make the generated requires interchangeable between Rawhide # and ELN (.elnYY < .fcXX). -%global baserelease 34 +%global baserelease 35 Release: %{baserelease}%{?dist} # Licenses: @@ -253,10 +253,10 @@ Source12: ChangeLog.old %endif %ifarch ppc64 %global glibc_ldso /lib64/ld64.so.1 -%define glibc_rtld_early_cflags -mcpu=power8 %endif %ifarch ppc64le %global glibc_ldso /lib64/ld64.so.2 +%define glibc_rtld_early_cflags -mcpu=power8 %endif %ifarch riscv64 %global glibc_ldso /lib/ld-linux-riscv64-lp64d.so.1 @@ -2574,6 +2574,9 @@ update_gconv_modules_cache () %endif %changelog +* Thu Jul 18 2024 Arjun Shankar - 2.39.9000-35 +- ppc64le: Build early startup code with -mcpu=power8 + * Mon Jul 15 2024 DJ Delorie - 2.39.9000-34 - Auto-sync with upstream branch master, commit a11e15ea0ab1ee8a1947b6be52beca53693f0991.