blob: 17ba15193387e5d593d40107b176b29bfcb3660c [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"
Andrew Geissler95ac1b82021-03-31 14:34:31 -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
15EXTRA_OECONF_arm = "--enable-debug-frame"
Brad Bishopa34c0302019-09-23 22:34:48 -040016EXTRA_OECONF_armeb = "--enable-debug-frame"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017EXTRA_OECONF_aarch64 = "--enable-debug-frame"
18
Brad Bishop00111322018-04-01 22:23:53 -040019do_install_append () {
20 oe_multilib_header libunwind.h
21}
22
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023BBCLASSEXTEND = "native"