hi, In the "Programming guide" it says SIZE is an option in the compiler JCL Example: specifying compiler options using JCL The following example shows how to specify compiler options under z/OS using JCL. ... //STEP1 EXEC PGM=IGYCRCTL, // PARM=’LIST,NOCOMPILE(S),OBJECT,FLAG(E,E)’
also there are some considerations with the region: Compile-time storage requirements are substantially increased compared to prior versions of Enterprise COBOL. The compiler requires a minimum of 200M REGION size to run. The compiler option SIZE(MAX) is no longer supported, but gets tolerated and interpreted as SIZE(5000K). Your SIZE option setting should be in the range of 5000 K to 20000 K and your region size should be at least 200M. The region size must be large especially at higher optimization levels, that is, programs compiled with the OPT(1) or OPT(2) compiler option. Hope it helps! Gonzalo Cengotita *Gonzalo Cengotita* 2016-07-12 12:28 GMT+02:00 Jorge Garcia <[email protected]>: > Hi, > > We are migrating from cobol V4R2 to V5R1. Some of our test compilations > cancel with IGYLI5062-U and we must increase the default SIZE in COBOL > options. We want to avoid change this option in the PARM sentence in JCL > and set in CEEPRMxx member in PARMLIB, but we can't find the parameter in > the syntax. > Is there any way for set the default SIZE for all the compilations Jobs? > > Regards > > Jorge Garcia Juanino > Gerente sistemas z/OS > ACTP – DIAC – Operación y Soporte EMEA > MAPFRE > Avenida del Talgo 100-103 – 3ª Planta > CP 28023 Madrid > Tel. 91 581 27 34, Movil 618333559 > [email protected] > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, > send email to [email protected] with the message: INFO IBM-MAIN > ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO IBM-MAIN
