blob: 5726589661f73fd1762c01e88571c06b9ad13b42 [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"
15EXTRA_OECONF_aarch64 = "--enable-debug-frame"
16
Brad Bishop00111322018-04-01 22:23:53 -040017do_install_append () {
18 oe_multilib_header libunwind.h
19}
20
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021BBCLASSEXTEND = "native"