Nuttall, Peter [CCC-OT_IT] wrote: > Hi All, > > Enterprise COBOL compiler v3.4. > > Am pretty sure someone else must have hit this. I have hit the > 100 char (I think ?) limit for the opts passed to the compiler > via the Parm setting in the JCL. > > For the Enterprise PL1 compiler I solved this by setting PARM='+DD:OPTIONS' > in the JCL and then putting the compiler opts in the dd named OPTIONS. Is > there a way for doing this with the Enterprise COBOL Compiler ? ... I have > been looking through the manuals, and have not found anything ? > > Many thanks in advance for any help, > Peter
If it has to be JCL, I think you're out of luck. But here's some options: 1. Consider PROCESS statements embedded in your source code; you can specify most compiler options in these statements, placed at the very start of the source program 2. Make sure your compiler is installed with the values you need most often: you only need to specify parms to override defaults; if the defaults are what you want, you don't need to specify parms 3. If the reason (or one reason) for running out of PARM space is because LE options are taking up room, many of them may be specified in JCL, if you are running a recent enough version of z/OS (I think 1.5, but it might have been 1.6 where LE parms could be specified by DD statement) Hope this helps. Kind regards, -Steve Comstock The Trainer's Friend, Inc. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

