Blame SOURCES/coreclr-libunwind-fno-common.patch

f2d766
From 29e17d8d2ccbca07c423e3089a6d5ae8a1c9cb6e Mon Sep 17 00:00:00 2001
f2d766
From: Yichao Yu <yyc1992@gmail.com>
f2d766
Date: Tue, 31 Mar 2020 00:43:32 -0400
f2d766
Subject: [PATCH] Fix compilation with -fno-common.
f2d766
f2d766
Making all other archs consistent with IA64 which should not have this problem.
f2d766
Also move the FIXME to the correct place.
f2d766
f2d766
Also add some minimum comments about this...
f2d766
---
f2d766
 src/aarch64/Ginit.c                        | 15 +++++++--------
f2d766
 src/arm/Ginit.c                            | 15 +++++++--------
f2d766
 src/coredump/_UPT_get_dyn_info_list_addr.c |  5 +++++
f2d766
 src/hppa/Ginit.c                           | 15 +++++++--------
f2d766
 src/ia64/Ginit.c                           |  1 +
f2d766
 src/mi/Gfind_dynamic_proc_info.c           |  1 +
f2d766
 src/mips/Ginit.c                           | 15 +++++++--------
f2d766
 src/ppc32/Ginit.c                          | 11 +++++++----
f2d766
 src/ppc64/Ginit.c                          | 11 +++++++----
f2d766
 src/ptrace/_UPT_get_dyn_info_list_addr.c   |  5 +++++
f2d766
 src/s390x/Ginit.c                          | 15 +++++++--------
f2d766
 src/sh/Ginit.c                             | 15 +++++++--------
f2d766
 src/tilegx/Ginit.c                         | 15 +++++++--------
f2d766
 src/x86/Ginit.c                            | 15 +++++++--------
f2d766
 src/x86_64/Ginit.c                         | 15 +++++++--------
f2d766
 15 files changed, 89 insertions(+), 80 deletions(-)
f2d766
f2d766
diff --git a/src/pal/src/libunwind/src/aarch64/Ginit.c b/src/pal/src/libunwind/src/aarch64/Ginit.c
f2d766
index dec235c82..35389762f 100644
f2d766
--- a/src/pal/src/libunwind/src/aarch64/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/aarch64/Ginit.c
f2d766
@@ -61,13 +61,6 @@ tdep_uc_addr (unw_tdep_context_t *uc, int reg)
f2d766
 
f2d766
 # endif /* UNW_LOCAL_ONLY */
f2d766
 
f2d766
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
f2d766
-
f2d766
-/* XXX fix me: there is currently no way to locate the dyn-info list
f2d766
-       by a remote unwinder.  On ia64, this is done via a special
f2d766
-       unwind-table entry.  Perhaps something similar can be done with
f2d766
-       DWARF2 unwind info.  */
f2d766
-
f2d766
 static void
f2d766
 put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
f2d766
 {
f2d766
@@ -78,7 +71,13 @@ static int
f2d766
 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
                         void *arg)
f2d766
 {
f2d766
-  *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
f2d766
+#ifndef UNW_LOCAL_ONLY
f2d766
+# pragma weak _U_dyn_info_list_addr
f2d766
+  if (!_U_dyn_info_list_addr)
f2d766
+    return -UNW_ENOINFO;
f2d766
+#endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
+  *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766
 
f2d766
diff --git a/src/pal/src/libunwind/src/arm/Ginit.c b/ssrc/pal/src/libunwind/src/arm/Ginit.c
f2d766
index 2720d063a..0bac0d72d 100644
f2d766
--- a/src/pal/src/libunwind/src/arm/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/arm/Ginit.c
f2d766
@@ -57,18 +57,17 @@ tdep_uc_addr (unw_tdep_context_t *uc, int reg)
f2d766
 
f2d766
 # endif /* UNW_LOCAL_ONLY */
f2d766
 
f2d766
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
f2d766
-
f2d766
-/* XXX fix me: there is currently no way to locate the dyn-info list
f2d766
-       by a remote unwinder.  On ia64, this is done via a special
f2d766
-       unwind-table entry.  Perhaps something similar can be done with
f2d766
-       DWARF2 unwind info.  */
f2d766
-
f2d766
 static int
f2d766
 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
                         void *arg)
f2d766
 {
f2d766
-  *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
f2d766
+#ifndef UNW_LOCAL_ONLY
f2d766
+# pragma weak _U_dyn_info_list_addr
f2d766
+  if (!_U_dyn_info_list_addr)
f2d766
+    return -UNW_ENOINFO;
f2d766
+#endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
+  *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766
 
f2d766
diff --git a/src/pal/src/libunwind/src/coredump/_UPT_get_dyn_info_list_addr.c b/src/pal/src/libunwind/src/coredump/_UPT_get_dyn_info_list_addr.c
f2d766
index 0d1190556..739ed0569 100644
f2d766
--- a/src/pal/src/libunwind/src/coredump/_UPT_get_dyn_info_list_addr.c
f2d766
+++ b/src/pal/src/libunwind/src/coredump/_UPT_get_dyn_info_list_addr.c
f2d766
@@ -74,6 +74,11 @@ get_list_addr (unw_addr_space_t as, unw_word_t *dil_addr, void *arg,
f2d766
 
f2d766
 #else
f2d766
 
f2d766
+/* XXX fix me: there is currently no way to locate the dyn-info list
f2d766
+       by a remote unwinder.  On ia64, this is done via a special
f2d766
+       unwind-table entry.  Perhaps something similar can be done with
f2d766
+       DWARF2 unwind info.  */
f2d766
+
f2d766
 static inline int
f2d766
 get_list_addr (unw_addr_space_t as, unw_word_t *dil_addr, void *arg,
f2d766
                int *countp)
f2d766
diff --git a/src/pal/src/libunwind/src/hppa/Ginit.c b/src/pal/src/libunwind/src/hppa/Ginit.c
f2d766
index 461e4b93d..265455a68 100644
f2d766
--- a/src/pal/src/libunwind/src/hppa/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/hppa/Ginit.c
f2d766
@@ -64,13 +64,6 @@ _Uhppa_uc_addr (ucontext_t *uc, int reg)
f2d766
 
f2d766
 # endif /* UNW_LOCAL_ONLY */
f2d766
 
f2d766
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
f2d766
-
f2d766
-/* XXX fix me: there is currently no way to locate the dyn-info list
f2d766
-       by a remote unwinder.  On ia64, this is done via a special
f2d766
-       unwind-table entry.  Perhaps something similar can be done with
f2d766
-       DWARF2 unwind info.  */
f2d766
-
f2d766
 static void
f2d766
 put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
f2d766
 {
f2d766
@@ -81,7 +74,13 @@ static int
f2d766
 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
                         void *arg)
f2d766
 {
f2d766
-  *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
f2d766
+#ifndef UNW_LOCAL_ONLY
f2d766
+# pragma weak _U_dyn_info_list_addr
f2d766
+  if (!_U_dyn_info_list_addr)
f2d766
+    return -UNW_ENOINFO;
f2d766
+#endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
+  *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766
 
f2d766
diff --git a/src/pal/src/libunwind/src/ia64/Ginit.c b/src/pal/src/libunwind/src/ia64/Ginit.c
f2d766
index b09a2ad57..8601bb3ca 100644
f2d766
--- a/src/pal/src/libunwind/src/ia64/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/ia64/Ginit.c
f2d766
@@ -68,6 +68,7 @@ get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
   if (!_U_dyn_info_list_addr)
f2d766
     return -UNW_ENOINFO;
f2d766
 #endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
   *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766
diff --git a/src/pal/src/libunwind/src/mi/Gfind_dynamic_proc_info.c b/src/pal/src/libunwind/src/mi/Gfind_dynamic_proc_info.c
f2d766
index 98d350128..2e7c62e5e 100644
f2d766
--- a/src/pal/src/libunwind/src/mi/Gfind_dynamic_proc_info.c
f2d766
+++ b/src/pal/src/libunwind/src/mi/Gfind_dynamic_proc_info.c
f2d766
@@ -49,6 +49,7 @@ local_find_proc_info (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi,
f2d766
     return -UNW_ENOINFO;
f2d766
 #endif
f2d766
 
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
   list = (unw_dyn_info_list_t *) (uintptr_t) _U_dyn_info_list_addr ();
f2d766
   for (di = list->first; di; di = di->next)
f2d766
     if (ip >= di->start_ip && ip < di->end_ip)
f2d766
diff --git a/src/pal/src/libunwind/src/mips/Ginit.c b/src/pal/src/libunwind/src/mips/Ginit.c
f2d766
index 3df170c75..bf7a8f5a8 100644
f2d766
--- a/src/pal/src/libunwind/src/mips/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/mips/Ginit.c
f2d766
@@ -69,13 +69,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
f2d766
 
f2d766
 # endif /* UNW_LOCAL_ONLY */
f2d766
 
f2d766
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
f2d766
-
f2d766
-/* XXX fix me: there is currently no way to locate the dyn-info list
f2d766
-       by a remote unwinder.  On ia64, this is done via a special
f2d766
-       unwind-table entry.  Perhaps something similar can be done with
f2d766
-       DWARF2 unwind info.  */
f2d766
-
f2d766
 static void
f2d766
 put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
f2d766
 {
f2d766
@@ -86,7 +79,13 @@ static int
f2d766
 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
                         void *arg)
f2d766
 {
f2d766
-  *dyn_info_list_addr = (unw_word_t) (intptr_t) &_U_dyn_info_list;
f2d766
+#ifndef UNW_LOCAL_ONLY
f2d766
+# pragma weak _U_dyn_info_list_addr
f2d766
+  if (!_U_dyn_info_list_addr)
f2d766
+    return -UNW_ENOINFO;
f2d766
+#endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
+  *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766
 
f2d766
diff --git a/src/pal/src/libunwind/src/ppc32/Ginit.c b/src/pal/src/libunwind/src/ppc32/Ginit.c
f2d766
index ba302448a..7b4545580 100644
f2d766
--- a/src/pal/src/libunwind/src/ppc32/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/ppc32/Ginit.c
f2d766
@@ -91,9 +91,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
f2d766
 
f2d766
 # endif /* UNW_LOCAL_ONLY */
f2d766
 
f2d766
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
f2d766
-
f2d766
-
f2d766
 static void
f2d766
 put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
f2d766
 {
f2d766
@@ -104,7 +101,13 @@ static int
f2d766
 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
                         void *arg)
f2d766
 {
f2d766
-  *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
f2d766
+#ifndef UNW_LOCAL_ONLY
f2d766
+# pragma weak _U_dyn_info_list_addr
f2d766
+  if (!_U_dyn_info_list_addr)
f2d766
+    return -UNW_ENOINFO;
f2d766
+#endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
+  *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766
 
f2d766
diff --git a/src/pal/src/libunwind/src/ppc64/Ginit.c b/src/pal/src/libunwind/src/ppc64/Ginit.c
f2d766
index 4c88cd6e7..7bfb395a7 100644
f2d766
--- a/src/pal/src/libunwind/src/ppc64/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/ppc64/Ginit.c
f2d766
@@ -95,9 +95,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
f2d766
 
f2d766
 # endif /* UNW_LOCAL_ONLY */
f2d766
 
f2d766
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
f2d766
-
f2d766
-
f2d766
 static void
f2d766
 put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
f2d766
 {
f2d766
@@ -108,7 +105,13 @@ static int
f2d766
 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
                         void *arg)
f2d766
 {
f2d766
-  *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
f2d766
+#ifndef UNW_LOCAL_ONLY
f2d766
+# pragma weak _U_dyn_info_list_addr
f2d766
+  if (!_U_dyn_info_list_addr)
f2d766
+    return -UNW_ENOINFO;
f2d766
+#endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
+  *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766
 
f2d766
diff --git a/src/pal/src/libunwind/src/ptrace/_UPT_get_dyn_info_list_addr.c b/src/pal/src/libunwind/src/ptrace/_UPT_get_dyn_info_list_addr.c
f2d766
index cc5ed0441..16671d453 100644
f2d766
--- a/src/pal/src/libunwind/src/ptrace/_UPT_get_dyn_info_list_addr.c
f2d766
+++ b/src/pal/src/libunwind/src/ptrace/_UPT_get_dyn_info_list_addr.c
f2d766
@@ -71,6 +71,11 @@ get_list_addr (unw_addr_space_t as, unw_word_t *dil_addr, void *arg,
f2d766
 
f2d766
 #else
f2d766
 
f2d766
+/* XXX fix me: there is currently no way to locate the dyn-info list
f2d766
+       by a remote unwinder.  On ia64, this is done via a special
f2d766
+       unwind-table entry.  Perhaps something similar can be done with
f2d766
+       DWARF2 unwind info.  */
f2d766
+
f2d766
 static inline int
f2d766
 get_list_addr (unw_addr_space_t as, unw_word_t *dil_addr, void *arg,
f2d766
                int *countp)
f2d766
diff --git a/src/pal/src/libunwind/src/sh/Ginit.c b/src/pal/src/libunwind/src/sh/Ginit.c
f2d766
index 52988a721..9fe96d2bd 100644
f2d766
--- a/src/pal/src/libunwind/src/sh/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/sh/Ginit.c
f2d766
@@ -58,13 +58,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
f2d766
 
f2d766
 # endif /* UNW_LOCAL_ONLY */
f2d766
 
f2d766
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
f2d766
-
f2d766
-/* XXX fix me: there is currently no way to locate the dyn-info list
f2d766
-       by a remote unwinder.  On ia64, this is done via a special
f2d766
-       unwind-table entry.  Perhaps something similar can be done with
f2d766
-       DWARF2 unwind info.  */
f2d766
-
f2d766
 static void
f2d766
 put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
f2d766
 {
f2d766
@@ -75,7 +68,13 @@ static int
f2d766
 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
                         void *arg)
f2d766
 {
f2d766
-  *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
f2d766
+#ifndef UNW_LOCAL_ONLY
f2d766
+# pragma weak _U_dyn_info_list_addr
f2d766
+  if (!_U_dyn_info_list_addr)
f2d766
+    return -UNW_ENOINFO;
f2d766
+#endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
+  *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766
 
f2d766
diff --git a/src/pal/src/libunwind/src/tilegx/Ginit.c b/src/pal/src/libunwind/src/tilegx/Ginit.c
f2d766
index 7564a558b..925e64132 100644
f2d766
--- a/src/pal/src/libunwind/src/tilegx/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/tilegx/Ginit.c
f2d766
@@ -64,13 +64,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
f2d766
 
f2d766
 # endif /* UNW_LOCAL_ONLY */
f2d766
 
f2d766
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
f2d766
-
f2d766
-/* XXX fix me: there is currently no way to locate the dyn-info list
f2d766
-       by a remote unwinder.  On ia64, this is done via a special
f2d766
-       unwind-table entry.  Perhaps something similar can be done with
f2d766
-       DWARF2 unwind info.  */
f2d766
-
f2d766
 static void
f2d766
 put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
f2d766
 {
f2d766
@@ -81,7 +74,13 @@ static int
f2d766
 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
                         void *arg)
f2d766
 {
f2d766
-  *dyn_info_list_addr = (unw_word_t) (intptr_t) &_U_dyn_info_list;
f2d766
+#ifndef UNW_LOCAL_ONLY
f2d766
+# pragma weak _U_dyn_info_list_addr
f2d766
+  if (!_U_dyn_info_list_addr)
f2d766
+    return -UNW_ENOINFO;
f2d766
+#endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
+  *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766
 
f2d766
diff --git a/src/pal/src/libunwind/src/x86/Ginit.c b/src/pal/src/libunwind/src/x86/Ginit.c
f2d766
index f6b8dc27d..3cec74a21 100644
f2d766
--- a/src/pal/src/libunwind/src/x86/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/x86/Ginit.c
f2d766
@@ -54,13 +54,6 @@ tdep_uc_addr (ucontext_t *uc, int reg)
f2d766
 
f2d766
 # endif /* UNW_LOCAL_ONLY */
f2d766
 
f2d766
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
f2d766
-
f2d766
-/* XXX fix me: there is currently no way to locate the dyn-info list
f2d766
-       by a remote unwinder.  On ia64, this is done via a special
f2d766
-       unwind-table entry.  Perhaps something similar can be done with
f2d766
-       DWARF2 unwind info.  */
f2d766
-
f2d766
 static void
f2d766
 put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
f2d766
 {
f2d766
@@ -71,7 +64,13 @@ static int
f2d766
 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
                         void *arg)
f2d766
 {
f2d766
-  *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
f2d766
+#ifndef UNW_LOCAL_ONLY
f2d766
+# pragma weak _U_dyn_info_list_addr
f2d766
+  if (!_U_dyn_info_list_addr)
f2d766
+    return -UNW_ENOINFO;
f2d766
+#endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
+  *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766
 
f2d766
diff --git a/src/pal/src/libunwind/src/x86_64/Ginit.c b/src/pal/src/libunwind/src/x86_64/Ginit.c
f2d766
index a865d3385..fd8d418b1 100644
f2d766
--- a/src/pal/src/libunwind/src/x86_64/Ginit.c
f2d766
+++ b/src/pal/src/libunwind/src/x86_64/Ginit.c
f2d766
@@ -49,13 +49,6 @@ static struct unw_addr_space local_addr_space;
f2d766
 
f2d766
 unw_addr_space_t unw_local_addr_space = &local_addr_space;
f2d766
 
f2d766
-HIDDEN unw_dyn_info_list_t _U_dyn_info_list;
f2d766
-
f2d766
-/* XXX fix me: there is currently no way to locate the dyn-info list
f2d766
-       by a remote unwinder.  On ia64, this is done via a special
f2d766
-       unwind-table entry.  Perhaps something similar can be done with
f2d766
-       DWARF2 unwind info.  */
f2d766
-
f2d766
 static void
f2d766
 put_unwind_info (unw_addr_space_t as, unw_proc_info_t *proc_info, void *arg)
f2d766
 {
f2d766
@@ -66,7 +59,13 @@ static int
f2d766
 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
f2d766
                         void *arg)
f2d766
 {
f2d766
-  *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
f2d766
+#ifndef UNW_LOCAL_ONLY
f2d766
+# pragma weak _U_dyn_info_list_addr
f2d766
+  if (!_U_dyn_info_list_addr)
f2d766
+    return -UNW_ENOINFO;
f2d766
+#endif
f2d766
+  // Access the `_U_dyn_info_list` from `LOCAL_ONLY` library, i.e. libunwind.so.
f2d766
+  *dyn_info_list_addr = _U_dyn_info_list_addr ();
f2d766
   return 0;
f2d766
 }
f2d766