Do not hide _ZSt21ios_base_library_initv

The symbol should not be hidden:
https://bugzilla.redhat.com/show_bug.cgi?id=2188013

Resolves: RHEL-29853
This commit is contained in:
Marek Polacek 2024-08-13 11:06:54 -04:00
parent 12e94e07b3
commit 9d30628a41
2 changed files with 5 additions and 5 deletions

View File

@ -152,7 +152,7 @@ BuildRequires: scl-utils-build
Summary: GCC version %{gcc_major}
Name: %{?scl_prefix}gcc
Version: %{gcc_version}
Release: %{gcc_release}%{?dist}
Release: %{gcc_release}.1%{?dist}
# License notes for some of the less obvious ones:
# gcc/doc/cppinternals.texi: Linux-man-pages-copyleft-2-para
# isl: MIT, BSD-2-Clause
@ -2787,6 +2787,9 @@ fi
%endif
%changelog
* Tue Aug 13 2024 Marek Polacek <polacek@redhat.com> 14.2.1-1.1
- do not hide _ZSt21ios_base_library_initv
* Fri Aug 9 2024 Marek Polacek <polacek@redhat.com> 14.2.1-1
- update from releases/gcc-14 branch
- GCC 14.2 release

View File

@ -825,7 +825,7 @@
+#include "../c++98/locale_facets.cc"
--- libstdc++-v3/src/nonshared98/ios_init.cc.jj 2024-07-18 16:10:38.324406775 +0200
+++ libstdc++-v3/src/nonshared98/ios_init.cc 2024-07-18 18:09:02.166562200 +0200
@@ -0,0 +1,41 @@
@@ -0,0 +1,38 @@
+// Copyright (C) 1997-2024 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library. This library is free
@ -864,9 +864,6 @@
+
+_GLIBCXX_END_NAMESPACE_VERSION
+} // namespace
+#if defined(__powerpc64__)
+asm (".hidden _ZSt21ios_base_library_initv");
+#endif
--- libstdc++-v3/src/nonshared98/Makefile.am.jj 2024-07-18 16:10:38.324406775 +0200
+++ libstdc++-v3/src/nonshared98/Makefile.am 2024-07-19 12:01:12.820878679 +0200
@@ -0,0 +1,102 @@