Auto-update rpmalloc to 1.4.5 (#3910)

* Update rpmalloc to 1.4.5

* disbale wasm

* Update xmake.lua

---------

Co-authored-by: star9029 <hengxings783@gmail.com>
pull/3918/head
ruki 11 months ago committed by GitHub
parent 97e0c63ed7
commit 34812a68d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 11
      packages/r/rpmalloc/xmake.lua

@ -1,17 +1,19 @@
package("rpmalloc") package("rpmalloc")
set_homepage("https://github.com/mjansson/rpmalloc") set_homepage("https://github.com/mjansson/rpmalloc")
set_description("Public domain cross platform lock free thread caching 16-byte aligned memory allocator implemented in C") set_description("Public domain cross platform lock free thread caching 16-byte aligned memory allocator implemented in C")
set_license("MIT")
add_urls("https://github.com/mjansson/rpmalloc/archive/refs/tags/$(version).tar.gz", add_urls("https://github.com/mjansson/rpmalloc/archive/refs/tags/$(version).tar.gz",
"https://github.com/mjansson/rpmalloc.git") "https://github.com/mjansson/rpmalloc.git")
add_versions("1.4.5", "2513626697ef72a60957acc8caed17c39931a55c1a49202707de195742683d69")
add_versions("1.4.4", "3859620c03e6473f0b3f16a4e965e7c049594253f70e8370fb9caa0e4118accb") add_versions("1.4.4", "3859620c03e6473f0b3f16a4e965e7c049594253f70e8370fb9caa0e4118accb")
if is_plat("windows") then if is_plat("windows") then
add_syslinks("advapi32") add_syslinks("advapi32")
end end
on_install(function (package) on_install("!wasm", function (package)
local configs = {}
io.writefile("xmake.lua", [[ io.writefile("xmake.lua", [[
add_rules("mode.release", "mode.debug") add_rules("mode.release", "mode.debug")
target("rpmalloc") target("rpmalloc")
@ -23,10 +25,7 @@ package("rpmalloc")
add_syslinks("advapi32") add_syslinks("advapi32")
end end
]]) ]])
if package:config("shared") then import("package.tools.xmake").install(package)
configs.kind = "shared"
end
import("package.tools.xmake").install(package, configs)
end) end)
on_test(function (package) on_test(function (package)

Loading…
Cancel
Save