d5bcb30cf9
If C++ is enabled, enable cxx exceptions, so libunwind will implement _Unwind_GetIP which is used by mono (which already depends on C++) Fixes: - http://autobuild.buildroot.net/results/dbd64c89815d393a4e28b312d74fd80ee6de92da Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
23 lines
630 B
Makefile
23 lines
630 B
Makefile
################################################################################
|
|
#
|
|
# libunwind
|
|
#
|
|
################################################################################
|
|
|
|
LIBUNWIND_VERSION = 1.3.1
|
|
LIBUNWIND_SITE = http://download.savannah.gnu.org/releases/libunwind
|
|
LIBUNWIND_INSTALL_STAGING = YES
|
|
LIBUNWIND_LICENSE_FILES = COPYING
|
|
LIBUNWIND_LICENSE = MIT
|
|
LIBUNWIND_AUTORECONF = YES
|
|
|
|
LIBUNWIND_CONF_OPTS = \
|
|
--disable-tests \
|
|
$(if $(BR2_INSTALL_LIBSTDCPP),--enable-cxx-exceptions,--disable-cxx-exceptions)
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBATOMIC_OPS),y)
|
|
LIBUNWIND_DEPENDENCIES = libatomic_ops
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|