Discussion:
[Libunwind-devel] [PATCH] Default to --enable-debug-frame also on aarch64
Adrian Bunk
2017-11-20 15:04:11 UTC
Permalink
This is required for perf to show call graphs.
---
configure.ac | 1 +
1 file changed, 1 insertion(+)

diff --git a/configure.ac b/configure.ac
index 57944d9..9f86551 100644
--- a/configure.ac
+++ b/configure.ac
@@ -248,6 +248,7 @@ AC_ARG_ENABLE(debug_frame,
AS_HELP_STRING([--enable-debug-frame],[Load the ".debug_frame" section if available]),, [
case "${target_arch}" in
(arm) enable_debug_frame=yes;;
+ (aarch64) enable_debug_frame=yes;;
(*) enable_debug_frame=no;;
esac])
if test x$enable_debug_frame = xyes; then
--
2.11.0
Dave Watson
2017-11-21 23:38:54 UTC
Permalink
Post by Adrian Bunk
This is required for perf to show call graphs.
---
configure.ac | 1 +
1 file changed, 1 insertion(+)
Merged, thanks.

Loading...