revert luajit (#1266)

pull/1271/head
ruki 2 years ago committed by GitHub
parent b267ba5bb6
commit 6c1f835659
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      packages/l/luajit/port/xmake.lua
  2. 1
      packages/l/luajit/xmake.lua

@ -139,8 +139,11 @@ target("buildvm")
elseif is_arch("x64", "x86_64") then
if has_config("gc64") then
add_defines("LUAJIT_ENABLE_GC64", {public = true})
end
add_files("src/vm_x64.dasc")
else
-- @see https://github.com/xmake-io/xmake-repo/issues/1264
add_files("src/vm_x86.dasc")
end
add_defines("LUAJIT_TARGET=LUAJIT_ARCH_X64", {public = true})
elseif is_arch("arm64", "arm64-v8a") then
add_files("src/vm_arm64.dasc")

@ -4,6 +4,7 @@ package("luajit")
set_description("A Just-In-Time Compiler (JIT) for the Lua programming language.")
set_urls("http://luajit.org/download/LuaJIT-$(version).tar.gz",
"https://github.com/LuaJIT/LuaJIT.git",
"http://luajit.org/git/luajit-2.0.git",
"http://repo.or.cz/luajit-2.0.git")

Loading…
Cancel
Save