libstdc++: Ensure __glibcxx_assert_fail has default visibility
authorJonathan Wakely <jwakely@redhat.com>
Fri, 4 Mar 2022 18:23:10 +0000 (18:23 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Sat, 5 Mar 2022 20:33:36 +0000 (20:33 +0000)
This ensures there's no linker error if libstdc++ headers are included
following a pragma that sets hidden visibility.

Similarly for std::__terminate, which is always-inline so shouldn't
matter, but it's not wrong to do this anyway.

libstdc++-v3/ChangeLog:

* include/bits/c++config (__glibcxx_assert_fail): Add visibility
attribute.
(__terminate): Likewise.

libstdc++-v3/include/bits/c++config

index c64b61b3c90ace32d92f8d649a5670585c1e630f..6c134f135092388c82f0dff07c0abc1aaeea4e8c 100644 (file)
@@ -305,6 +305,7 @@ namespace std
   // This allows the library to terminate without including all of <exception>
   // and without making the declaration of std::terminate visible to users.
   extern "C++" __attribute__ ((__noreturn__, __always_inline__))
+  _GLIBCXX_VISIBILITY(default)
   inline void __terminate() _GLIBCXX_USE_NOEXCEPT
   {
     void terminate() _GLIBCXX_USE_NOEXCEPT __attribute__ ((__noreturn__));
@@ -554,7 +555,7 @@ namespace std
 {
   // Avoid the use of assert, because we're trying to keep the <cassert>
   // include out of the mix.
-  extern "C++" _GLIBCXX_NORETURN
+  extern "C++" _GLIBCXX_NORETURN _GLIBCXX_VISIBILITY(default)
   void
   __glibcxx_assert_fail(const char* __file, int __line,
                        const char* __function, const char* __condition)