From c1a65821a279058742441f7cf39d73d61d5b0377 Mon Sep 17 00:00:00 2001 From: Adrian Bunk Date: Mon, 20 Nov 2017 17:04:11 +0200 Subject: [PATCH] Default to --enable-debug-frame also on aarch64 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 57944d96..9f865512 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