69d06fda2a
Switch site to get latest release https://github.com/libunwind/libunwind/releases/tag/v1.8.1 https://github.com/libunwind/libunwind/releases/tag/v1.8.0 https://github.com/libunwind/libunwind/releases/tag/v1.7.2 https://github.com/libunwind/libunwind/releases/tag/v1.7.1 https://github.com/libunwind/libunwind/releases/tag/v1.7.0 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
695 B
Makefile
24 lines
695 B
Makefile
################################################################################
|
|
#
|
|
# libunwind
|
|
#
|
|
################################################################################
|
|
|
|
LIBUNWIND_VERSION = 1.8.1
|
|
LIBUNWIND_SITE = https://github.com/libunwind/libunwind/releases/download/v$(LIBUNWIND_VERSION)
|
|
LIBUNWIND_INSTALL_STAGING = YES
|
|
LIBUNWIND_LICENSE_FILES = COPYING
|
|
LIBUNWIND_LICENSE = MIT
|
|
LIBUNWIND_CPE_ID_VALID = YES
|
|
|
|
LIBUNWIND_CONF_OPTS = \
|
|
--disable-tests \
|
|
$(if $(BR2_INSTALL_LIBSTDCPP),--enable-cxx-exceptions,--disable-cxx-exceptions)
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBUCONTEXT),y)
|
|
LIBUNWIND_DEPENDENCIES += libucontext
|
|
LIBUNWIND_CONF_OPTS += LIBS=-lucontext
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|