lune/tests/ffi/utility/compile.luau

9 lines
265 B
Text

local process = require("@lune/process")
local function compile(file, out)
local gcc = process.exec("gcc", { "-shared", "-o", out, "-fPIC", file })
if not gcc.ok then
error("Failed to execute gcc command\n" .. gcc.stdout .. gcc.stderr)
end
end
return compile