libunwind.mk 668 B

1234567891011121314151617181920212223
  1. ################################################################################
  2. #
  3. # libunwind
  4. #
  5. ################################################################################
  6. LIBUNWIND_VERSION = 1.6.2
  7. LIBUNWIND_SITE = http://download.savannah.gnu.org/releases/libunwind
  8. LIBUNWIND_INSTALL_STAGING = YES
  9. LIBUNWIND_LICENSE_FILES = COPYING
  10. LIBUNWIND_LICENSE = MIT
  11. LIBUNWIND_CPE_ID_VALID = YES
  12. LIBUNWIND_CONF_OPTS = \
  13. --disable-tests \
  14. $(if $(BR2_INSTALL_LIBSTDCPP),--enable-cxx-exceptions,--disable-cxx-exceptions)
  15. ifeq ($(BR2_PACKAGE_LIBUCONTEXT),y)
  16. LIBUNWIND_DEPENDENCIES += libucontext
  17. LIBUNWIND_CONF_OPTS += LIBS=-lucontext
  18. endif
  19. $(eval $(autotools-package))