1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-28 12:11:45 +02:00

Default to --enable-debug-frame also on aarch64

This is required for perf to show call graphs.
This commit is contained in:
Adrian Bunk 2017-11-20 17:04:11 +02:00 committed by Dave Watson
parent 46c336d18f
commit c1a65821a2

View file

@ -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