|
|
|
package("libunwind")
|
|
|
|
|
|
|
|
set_homepage("https://www.nongnu.org/libunwind/")
|
|
|
|
set_description("A portable and efficient C programming interface (API) to determine the call-chain of a program.")
|
|
|
|
|
|
|
|
add_urls("https://github.com/libunwind/libunwind/releases/download/$(version).tar.gz", {version = function (version)
|
|
|
|
if version:eq("v1.5") then
|
|
|
|
return "v1.5/libunwind-1.5.0"
|
|
|
|
else
|
|
|
|
return version .. "/libunwind-" .. (version:gsub("v", ""))
|
|
|
|
end
|
|
|
|
end})
|
|
|
|
add_urls("http://download.savannah.nongnu.org/releases/libunwind/libunwind-$(version).tar.gz", {version = function (version)
|
|
|
|
return version:gsub("v", "")
|
|
|
|
end})
|
|
|
|
add_urls("https://github.com/libunwind/libunwind.git")
|
|
|
|
add_versions("v1.5", "90337653d92d4a13de590781371c604f9031cdb50520366aa1e3a91e1efb1017")
|
|
|
|
add_versions("v1.6.2", "4a6aec666991fb45d0889c44aede8ad6eb108071c3554fcdff671f9c94794976")
|
|
|
|
|
|
|
|
add_configs("minidebuginfo", {description = "Enables support for LZMA-compressed symbol tables", default = false, type = "boolean"})
|
|
|
|
add_configs("zlibdebuginfo", {description = "Enables support for ZLIB-compressed symbol tables", default = false, type = "boolean"})
|
|
|
|
|
|
|
|
add_deps("autoconf")
|
|
|
|
|
|
|
|
add_defines("_GNU_SOURCE=1")
|
|
|
|
|
|
|
|
on_load("android", "linux", "bsd", "cross", function (package)
|
|
|
|
if package:config("minidebuginfo") then
|
|
|
|
package:add("deps", "lzma")
|
|
|
|
end
|
|
|
|
if package:config("zlibdebuginfo") then
|
|
|
|
package:add("deps", "zlib")
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
on_install("android", "linux", "bsd", "cross", function (package)
|
|
|
|
local configs = {"--enable-coredump=no", "--disable-tests"}
|
|
|
|
table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no"))
|
|
|
|
table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes"))
|
|
|
|
if package:debug() then
|
|
|
|
table.insert(configs, "--enable-debug")
|
|
|
|
end
|
|
|
|
if package:config("pic") ~= false then
|
|
|
|
table.insert(configs, "--with-pic")
|
|
|
|
end
|
|
|
|
table.insert(configs, (package:config("minidebuginfo") and "--enable" or "--disable") .. "-minidebuginfo")
|
|
|
|
table.insert(configs, (package:config("zlibdebuginfo") and "--enable" or "--disable") .. "-zlibdebuginfo")
|
|
|
|
import("package.tools.autoconf").install(package, configs)
|
|
|
|
end)
|
|
|
|
|
|
|
|
on_test(function (package)
|
|
|
|
assert(package:has_cfuncs("_Unwind_Backtrace(0, 0)", {includes = "unwind.h"}))
|
|
|
|
end)
|