From 116659c1e33b5e5e68cb57b5c7e502314155d0cd Mon Sep 17 00:00:00 2001 From: hefq343 Date: Mon, 17 Jun 2024 03:12:00 +0000 Subject: [PATCH] fix compile error for ppc64le Signed-off-by: hefq343 --- glibc.spec | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/glibc.spec b/glibc.spec index 4973018..7751dc7 100644 --- a/glibc.spec +++ b/glibc.spec @@ -27,10 +27,15 @@ # - Run smoke tests with valgrind to verify dynamic loader. # - Default: Always run valgrind tests if there is architecture support. ############################################################################## -%bcond_without testsuite %bcond_with benchtests %bcond_with bootstrap +%ifarch ppc64le +%bcond_with testsuite +%bcond_with werror +%else +%bcond_without testsuite %bcond_without werror +%endif %bcond_without docs %ifarch x86_64 aarch64 %bcond_without compat_2_17 @@ -66,7 +71,7 @@ ############################################################################## Name: glibc Version: 2.34 -Release: 150 +Release: 151 Summary: The GNU libc libraries License: %{all_license} URL: http://www.gnu.org/software/glibc/ @@ -1513,6 +1518,13 @@ fi %endif %changelog + +* Mon Jun 17 2024 hefq343 - 2.34-151 +- Type:bugfix +- ID: +- SUG:NA +- DESC:fix compile error for ppc64le + * Fri May 10 2024 shixuantong - 2.34-150 - Type:bugfix - ID: -- Gitee