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 28). Separate the options with commas.
stepname
The name of the step in the cataloged procedure that contains the PARM statement.

Figure 40 shows the job control to pass PARM.C and PARM.L options.

Figure 40. 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.


[ Top of Page | Previous Page | Next Page | Contents | Index ]