blob: bf74f9fa3c760fa76da0290e708603d209056825 [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"
Patrick Williams213cb262021-08-07 19:21:33 -05007DEPENDS:append:libc-musl = " libucontext"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008
Brad Bishop00111322018-04-01 22:23:53 -04009inherit autotools multilib_header
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010
11PACKAGECONFIG ??= ""
12PACKAGECONFIG[lzma] = "--enable-minidebuginfo,--disable-minidebuginfo,xz"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050013PACKAGECONFIG[latexdocs] = "--enable-documentation, --disable-documentation, latex2man-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014
Patrick Williams213cb262021-08-07 19:21:33 -050015EXTRA_OECONF:arm = "--enable-debug-frame"
16EXTRA_OECONF:armeb = "--enable-debug-frame"
17EXTRA_OECONF:aarch64 = "--enable-debug-frame"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018
Patrick Williams213cb262021-08-07 19:21:33 -050019do_install:append () {
Brad Bishop00111322018-04-01 22:23:53 -040020 oe_multilib_header libunwind.h
21}
22
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023BBCLASSEXTEND = "native"