From a526358a9d68b2507017da9e91609e8a2c965db4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Gro=C3=9Fmann?= Date: Tue, 10 Mar 2026 10:16:42 +0100 Subject: [PATCH] fix: increase LOAD and NCALIB dataset space SE37 abend during LUA link: LOAD dataset space exhausted. LUA and LUAC each statically link the full Lua VM and standard library (~33 modules) resulting in large load modules. LOAD: 5->100 tracks primary, 2->25 tracks secondary NCALIB: 5->10 tracks primary (headroom for 2 large object modules) --- project.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project.toml b/project.toml index de7da69..b278358 100644 --- a/project.toml +++ b/project.toml @@ -28,7 +28,7 @@ dsorg = "PO" recfm = "U" lrecl = 0 blksize = 19069 -space = ["TRK", 5, 2, 5] +space = ["TRK", 10, 5, 5] [mvs.build.datasets.syslmod] suffix = "LOAD" @@ -36,7 +36,7 @@ dsorg = "PO" recfm = "U" lrecl = 0 blksize = 19069 -space = ["TRK", 5, 2, 5] +space = ["TRK", 100, 25, 5] [dependencies] "mvslovers/crent370" = ">=1.0.4"