Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update luau to 0.638 #4908

Merged
merged 8 commits into from
Aug 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 26 additions & 10 deletions packages/l/luau/xmake.lua
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package("luau")

set_homepage("https://luau-lang.org/")
set_description("A fast, small, safe, gradually typed embeddable scripting language derived from Lua.")
set_license("MIT")

add_urls("https://github.com/Roblox/luau/archive/$(version).tar.gz",
"https://github.com/Roblox/luau.git")

add_versions("0.638", "87ea29188f0d788e3b8649a063cda6b1e1804a648f425f4d0e65ec8449f2d171")
add_versions("0.624", "6d5ce40a7dc0e17da51cc143d2ee1ab32727583c315938f5a69d13ef93ae574d")
add_versions("0.623", "5a72f9e5b996c5ec44ee2c7bd9448d2b2e5061bdf7d057de7490f92fb3003f40")
add_versions("0.538", "8a1240e02a7daacf1e5cff249040a3298c013157fc496c66adce6dcb21cc30be")
Expand All @@ -16,27 +16,43 @@ package("luau")

add_deps("cmake")

on_install("!bsd and !wasm", function(package)
on_install(function(package)
io.replace("extern/isocline/src/completers.c", "__finddata64_t", "_finddatai64_t", {plain = true})
io.replace("CMakeLists.txt", [[cmake_policy(SET CMP0054 NEW)]], [[
cmake_policy(SET CMP0054 NEW)
cmake_policy(SET CMP0057 NEW)
]], {plain = true})

local configs = {}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "RelWithDebInfo"))
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DLUAU_BUILD_TESTS=OFF")
table.insert(configs, "-DLUAU_BUILD_WEB=" .. (package:config("build_web") and "ON" or "OFF"))
table.insert(configs, "-DLUAU_BUILD_WEB=" .. ((package:is_plat("wasm") or package:config("build_web")) and "ON" or "OFF"))
table.insert(configs, "-DLUAU_EXTERN_C=" .. (package:config("extern_c") and "ON" or "OFF"))
import("package.tools.cmake").install(package, configs, { buildir = "build" })

io.replace("CMakeLists.txt", ".lib", "", {plain = true})
io.replace("Sources.cmake", ".lib", "", {plain = true})
if package:is_plat("bsd") then
io.replace("CMakeLists.txt", [[if(CMAKE_SYSTEM_NAME MATCHES "Linux|Darwin|iOS")]], [[if(TRUE)]], {plain = true})
end

if package:is_plat("wasm") then
import("package.tools.cmake").build(package, configs, { target = "Luau.Web", buildir = "build" })
else
import("package.tools.cmake").install(package, configs, { buildir = "build" })
end

local cmake_file = io.readfile("CMakeLists.txt")

local links = {}
for library_name, library_type in string.gmatch(cmake_file, "add_library%(([%a|%.]+) ([STATIC|INTERFACE]+)") do
if string.startswith(library_name, "Luau.") then
if library_type == "STATIC" then
for library_name, library_type in cmake_file:gmatch("add_library%(([%a|%.]+) (%w+)") do
library_type = library_type:lower()
if library_name:startswith("Luau.") and (library_type == "static" or library_type == "interface") then
if library_name:endswith(".lib") then
library_name = library_name:sub(1, -5)
end
if library_type == "static" then
table.insert(links, library_name)
end
local include_dir = library_name:gsub("Luau%.", "")
local include_dir = library_name:sub(6)
include_dir = include_dir:gsub("%..*", "")
os.trycp(include_dir .. "/include/*", package:installdir("include"))
end
Expand Down
Loading