blob: 76a1bf6246b1bfa56d2fbbd249244755444149bc [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001SUMMARY = "Library for obtaining the call-chain of a program"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002DESCRIPTION = "a portable and efficient C programming interface (API) to determine the call-chain of a program"
3HOMEPAGE = "http://www.nongnu.org/libunwind"
4LICENSE = "MIT"
Brad Bishopc68388fc2019-08-26 01:33:31 -04005LIC_FILES_CHKSUM = "file://COPYING;md5=2d80c8ed4062b8339b715f90fa68cc9f"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006DEPENDS += "libatomic-ops"
7
Brad Bishop00111322018-04-01 22:23:53 -04008inherit autotools multilib_header
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009
10PACKAGECONFIG ??= ""
11PACKAGECONFIG[lzma] = "--enable-minidebuginfo,--disable-minidebuginfo,xz"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050012PACKAGECONFIG[latexdocs] = "--enable-documentation, --disable-documentation, latex2man-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013
14EXTRA_OECONF_arm = "--enable-debug-frame"
Brad Bishopa34c0302019-09-23 22:34:48 -040015EXTRA_OECONF_armeb = "--enable-debug-frame"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016EXTRA_OECONF_aarch64 = "--enable-debug-frame"
17
Brad Bishop00111322018-04-01 22:23:53 -040018do_install_append () {
19 oe_multilib_header libunwind.h
20}
21
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022BBCLASSEXTEND = "native"