From 6f44662b523a5e8d61fddba9c5d1479ac7276fbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Gro=C3=9Fmann?= Date: Tue, 10 Mar 2026 10:09:02 +0100 Subject: [PATCH] fix: set SIZE=(4000K,40K) for LUA and LUAC link steps IEWL default SIZE=(231K,54K) is too small for the Lua library's external symbol count. IEW0254 TABLE OVERFLOW on ESD. --- project.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project.toml b/project.toml index d6755ed..de7da69 100644 --- a/project.toml +++ b/project.toml @@ -48,7 +48,7 @@ space = ["TRK", 5, 2, 5] [[link.module]] name = "LUA" entry = "@@CRT0" -options = ["LIST", "MAP", "XREF", "RENT"] +options = ["SIZE=(4000K,40K)", "LIST", "MAP", "XREF", "RENT"] include = ["@@CRT1", "LUA"] [link.module.dep_includes] @@ -58,7 +58,7 @@ include = ["@@CRT1", "LUA"] [[link.module]] name = "LUAC" entry = "@@CRT0" -options = ["LIST", "MAP", "XREF", "RENT"] +options = ["SIZE=(4000K,40K)", "LIST", "MAP", "XREF", "RENT"] include = ["@@CRT1", "LUAC"] [link.module.dep_includes]