mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
9 lines
266 B
Text
9 lines
266 B
Text
local process = require("@lune/process")
|
|
local function compile(file, out)
|
|
local gcc = process.spawn("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
|