Browse Source

Auto-update libunwind to v1.7.2 (#3079)

* Update libunwind to v1.7.2

* Update xmake.lua

* Update xmake.lua

* Update xmake.lua

* Update xmake.lua

---------

Co-authored-by: star9029 <[email protected]>
ruki 1 year ago
parent
commit
d070cb5bc6
1 changed files with 8 additions and 2 deletions
  1. 8 2
      packages/l/libunwind/xmake.lua

+ 8 - 2
packages/l/libunwind/xmake.lua

@@ -1,7 +1,7 @@
 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.")
+    set_license("MIT")
 
     add_urls("https://github.com/libunwind/libunwind/releases/download/$(version).tar.gz", {version = function (version)
         if version:eq("v1.5") then
@@ -14,8 +14,10 @@ package("libunwind")
         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_versions("v1.7.2", "a18a6a24307443a8ace7a8acc2ce79fbbe6826cd0edf98d6326d0225d6a5d6e6")
 
     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"})
@@ -33,7 +35,11 @@ package("libunwind")
         end
     end)
 
-    on_install("android", "linux", "bsd", "cross", function (package)
+    on_install("android|arm64@linux,macosx", "linux", "bsd", "cross", function (package)
+        if package:is_plat("bsd") then
+            io.replace("src/setjmp/siglongjmp.c", "&wp[JB_MASK]", "(unw_word_t)&wp[JB_MASK]", {plain = true})
+        end
+
         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"))