Specifying binder options through JCL
In your link JCL, use the PARM statement to specify options:
PARM=(binder-options)
PARM.stepname=('binder-options')
- binder-options
- A list of binder options (see Table 1). Separate the options with commas.
- stepname
- The name of the step in the cataloged procedure that contains the PARM statement.
Figure 1 shows the job control
to pass PARM.C and PARM.L options. Figure 1. Job control to pass PARM.C and PARM.L options
//* ASSEMBLE USING ASMACL
// JCLLIB ORDER=(ASM.SASMSAM1)
//HLASM EXEC ASMACL,PARM.C='NODECK,OBJ',
// PARM.L='LIST,LET,XREF,MAP'
//STEPLIB DD DISP=SHR,DSN=ASM.SASMMOD1
//C.SYSIN DD *
BR 14 < ASSEMBLER PROGRAM GOES HERE
END
/*
For more information, see the HLASM Installation and Customization Guide.