f1bfc0d054
cpe:2.3🅰️libunwind_project:libunwind is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Alibunwind_project%3Alibunwind Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
24 lines
675 B
Makefile
24 lines
675 B
Makefile
################################################################################
|
|
#
|
|
# libunwind
|
|
#
|
|
################################################################################
|
|
|
|
LIBUNWIND_VERSION = 1.5.0
|
|
LIBUNWIND_SITE = http://download.savannah.gnu.org/releases/libunwind
|
|
LIBUNWIND_INSTALL_STAGING = YES
|
|
LIBUNWIND_LICENSE_FILES = COPYING
|
|
LIBUNWIND_LICENSE = MIT
|
|
LIBUNWIND_CPE_ID_VENDOR = libunwind_project
|
|
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))
|