Files
kolibrios/programs/use_ob07.lua
Max Logaev 311db5c8c3
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 1m27s
Build system / Build (pull_request) Successful in 16m14s
oberon07: Option -nochk a by default
This option disables runtime checks to reduce binary file size.

Signed-off-by: Max Logaev <maxlogaev@proton.me>
2026-01-30 14:45:56 +03:00

7 lines
238 B
Lua

OB07 = tup.getcwd() .. "/develop/oberon07/compiler"
OB07_FLAGS = "-stk 1 -nochk a"
function build_ob07(input, output)
tup.rule(input, OB07 .. " %f kosexe -out %o " .. OB07_FLAGS .. " " .. tup.getconfig("KPACK_CMD"), output)
end