Ensure that --enable-debug-frame is set automatically when building libunwind for an ARM target. Other targets continue to have --disable-debug-frame as the default setting.
Signed-off-by: Zachary T Welch <[email protected]> --- configure.in | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/configure.in b/configure.in index 729827a..7dd991c 100644 --- a/configure.in +++ b/configure.in @@ -179,7 +179,11 @@ AC_MSG_RESULT([$enable_cxx_exceptions]) AC_MSG_CHECKING([whether to load .debug_frame sections]) AC_ARG_ENABLE(debug_frame, [ --enable-debug-frame Load the ".debug_frame" section if available], -[enable_debug_frame=$enableval], [enable_debug_frame=no]) +[enable_debug_frame=$enableval], [ +case "${target_arch}" in + (arm) enable_debug_frame=yes;; + (*) enable_debug_frame=no;; +esac]) if test x$enable_debug_frame = xyes; then AC_DEFINE([CONFIG_DEBUG_FRAME], [], [Enable Debug Frame]) fi -- 1.7.2.2 _______________________________________________ Libunwind-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/libunwind-devel
