Auto-update sentry-native to 0.7.0 (#3068)

* Update sentry-native to 0.7.0

* Update xmake.lua

* Update xmake.lua

* Update xmake.lua

* Update xmake.lua
pull/3071/head
Jérôme Leclercq 11 months ago committed by GitHub
parent a25cf41154
commit 77253ff386
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      packages/s/sentry-native/xmake.lua

@ -5,6 +5,7 @@ package("sentry-native")
set_urls("https://github.com/getsentry/sentry-native/releases/download/$(version)/sentry-native.zip", set_urls("https://github.com/getsentry/sentry-native/releases/download/$(version)/sentry-native.zip",
"https://github.com/getsentry/sentry-native.git") "https://github.com/getsentry/sentry-native.git")
add_versions("0.7.0", "4dfccc879a81771b9da1c335947ffc9e5987ca3d16b3035efa2c66a06f727543")
add_versions("0.6.7", "37d7880f837c85d0b19cac106b631c7b4524ff13f11cd31e8337da10842ea779") add_versions("0.6.7", "37d7880f837c85d0b19cac106b631c7b4524ff13f11cd31e8337da10842ea779")
add_versions("0.6.6", "7a98467c0b2571380a3afc5e681cb13aa406a709529be12d74610b0015ccde0c") add_versions("0.6.6", "7a98467c0b2571380a3afc5e681cb13aa406a709529be12d74610b0015ccde0c")
add_versions("0.6.5", "5f74a5c5c3abc6e1e7825d3306be9e3b3fd4e0f586f3cf7e86607d6f56a71995") add_versions("0.6.5", "5f74a5c5c3abc6e1e7825d3306be9e3b3fd4e0f586f3cf7e86607d6f56a71995")
@ -37,17 +38,25 @@ package("sentry-native")
package:add("defines", "SENTRY_BUILD_STATIC") package:add("defines", "SENTRY_BUILD_STATIC")
end end
local backend
if package:is_plat("linux") then -- linux defaults to breakpad before 0.7 and then defaults to crashpad
backend = package:version() and package:version():ge("0.7") and "crashpad" or "breakpad"
end
if package:config("backend") == "crashpad" then if package:config("backend") == "crashpad" then
backend = "crashpad"
elseif package:config("backend") == "breakpad" then
backend = "breakpad"
end
if backend == "crashpad" then
package:add("links", "sentry", "crashpad_client", "crashpad_util", "crashpad_minidump", "crashpad_handler_lib", "mini_chromium", "crashpad_tools", "crashpad_compat", "crashpad_snapshot") package:add("links", "sentry", "crashpad_client", "crashpad_util", "crashpad_minidump", "crashpad_handler_lib", "mini_chromium", "crashpad_tools", "crashpad_compat", "crashpad_snapshot")
package:add("deps", "zlib") package:add("deps", "zlib")
elseif package:config("backend") == "breakpad" then elseif backend == "breadpad" then
package:add("links", "sentry", "breakpad_client")
elseif package:is_plat("linux") then -- linux defaults to breakpad
package:add("links", "sentry", "breakpad_client") package:add("links", "sentry", "breakpad_client")
end end
end) end)
on_install("windows|x86", "windows|x64", "linux", "macosx", function (package) -- TODO: to enable android you will need to figure out the order of libs on_install("windows|x86", "windows|x64", "linux", "macosx|x86_64", function (package) -- TODO: to enable android you will need to figure out the order of libs
local opt = {} local opt = {}
local configs = {} local configs = {}
table.insert(configs, "-DSENTRY_BUILD_EXAMPLES=OFF") table.insert(configs, "-DSENTRY_BUILD_EXAMPLES=OFF")

Loading…
Cancel
Save