package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.8 KiB
47 lines
1.8 KiB
package("asmjit") |
|
set_homepage("https://asmjit.com/") |
|
set_description("AsmJit is a lightweight library for machine code generation written in C++ language.") |
|
set_license("zlib") |
|
|
|
add_urls("https://github.com/asmjit/asmjit.git") |
|
add_versions("2024.05.21", "55c5d6cef59619fb81014531b32f434a793cfb18") |
|
add_versions("2024.03.09", "268bce7952883dec5015ae539906e9e9d7fb65a0") |
|
add_versions("2022.01.18", "9a92d2f97260749f6f29dc93e53c743448f0137a") |
|
add_versions("2021.06.27", "d02235b83434943b52a6d7c57118205c5082de08") |
|
|
|
if is_plat("linux", "bsd") then |
|
add_syslinks("pthread", "rt", "m") |
|
end |
|
|
|
add_deps("cmake") |
|
|
|
on_install("!iphoneos", function (package) |
|
if not package:config("shared") then |
|
package:add("defines", "ASMJIT_STATIC") |
|
end |
|
|
|
local configs = {} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DASMJIT_STATIC=" .. (package:config("shared") and "OFF" or "ON")) |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
typedef int (*Func)(void); |
|
void test() { |
|
using namespace asmjit; |
|
JitRuntime rt; |
|
CodeHolder code; |
|
code.init(rt.environment()); |
|
x86::Assembler a(&code); |
|
a.mov(x86::eax, 1); // Emits 'mov eax, 1' - moves one to 'eax' register. |
|
a.ret(); // Emits 'ret' - returns from a function. |
|
Func fn; |
|
rt.add(&fn, &code); |
|
int result = fn(); |
|
rt.release(fn); |
|
return; |
|
} |
|
]]}, {configs = {languages = "c++17"}, includes = "asmjit/asmjit.h"})) |
|
end)
|
|
|