1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-11-25 00:27:39 +01:00

Enable coredump library build on ARM by default

The ARM coredump library compiles, ship it!
This commit is contained in:
Tommi Rantala 2012-09-18 13:08:12 +03:00
parent 79c2c254a7
commit 7d77ef4d82

View file

@ -103,7 +103,7 @@ SET_ARCH([$target_cpu],[target_arch])
AC_ARG_ENABLE(coredump,
AS_HELP_STRING([--enable-coredump],[building libunwind-coredump library]),,
[AS_CASE([$host_arch], [mips*|x86*], [enable_coredump=yes], [enable_coredump=no])]
[AS_CASE([$host_arch], [arm*|mips*|x86*], [enable_coredump=yes], [enable_coredump=no])]
)
AC_MSG_CHECKING([if we should build libunwind-coredump])