oberon07: Option -nochk a by default

This option disables runtime checks to reduce binary file size.

Signed-off-by: Max Logaev <maxlogaev@proton.me>
This commit is contained in:
2026-01-30 14:43:02 +03:00
parent 7f8e028ffd
commit 864210679c
2 changed files with 1 additions and 3 deletions

View File

@@ -6,6 +6,4 @@ end
tup.include(HELPERDIR .. "/use_ob07.lua")
OB07_FLAGS = OB07_FLAGS .. "-nochk a "
build_ob07({"SRC/CEdit.ob07"}, "cedit");

View File

@@ -1,5 +1,5 @@
OB07 = tup.getcwd() .. "/develop/oberon07/compiler"
OB07_FLAGS = "-stk 1 "
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)