Install LuaJIT .so library
This commit is contained in:
parent
57029cd66a
commit
05c37d9a85
@ -538,15 +538,17 @@ class LuaJIT(Lua):
|
|||||||
lua_file = exe("lua")
|
lua_file = exe("lua")
|
||||||
arch_file = "libluajit.a"
|
arch_file = "libluajit.a"
|
||||||
target_arch_file = "libluajit-5.1.a"
|
target_arch_file = "libluajit-5.1.a"
|
||||||
self.dll_file = None
|
so_file = "libluajit.so"
|
||||||
|
target_so_file = "libluajit-5.1.so.2"
|
||||||
|
dll_file = None
|
||||||
|
|
||||||
if os.name == "nt":
|
if os.name == "nt":
|
||||||
self.arch_file = "lua51.lib"
|
self.arch_file = "lua51.lib"
|
||||||
target_arch_file = "lua51.lib"
|
target_arch_file = "lua51.lib"
|
||||||
self.dll_file = "lua51.dll"
|
dll_file = "lua51.dll"
|
||||||
|
|
||||||
os.chdir("src")
|
os.chdir("src")
|
||||||
copy_files(os.path.join(opts.location, "bin"), self.dll_file)
|
copy_files(os.path.join(opts.location, "bin"), dll_file)
|
||||||
shutil.copy(luajit_file, os.path.join(opts.location, "bin", lua_file))
|
shutil.copy(luajit_file, os.path.join(opts.location, "bin", lua_file))
|
||||||
|
|
||||||
copy_files(os.path.join(opts.location, "include"),
|
copy_files(os.path.join(opts.location, "include"),
|
||||||
@ -554,6 +556,7 @@ class LuaJIT(Lua):
|
|||||||
|
|
||||||
copy_files(os.path.join(opts.location, "lib"))
|
copy_files(os.path.join(opts.location, "lib"))
|
||||||
shutil.copy(arch_file, os.path.join(opts.location, "lib", target_arch_file))
|
shutil.copy(arch_file, os.path.join(opts.location, "lib", target_arch_file))
|
||||||
|
shutil.copy(so_file, os.path.join(opts.location, "lib", target_so_file))
|
||||||
|
|
||||||
jitlib_path = os.path.join(
|
jitlib_path = os.path.join(
|
||||||
opts.location, "share", "lua", self.major_version, "jit")
|
opts.location, "share", "lua", self.major_version, "jit")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user