User`s guide

DIBOL
Remember that file options apply only to the file (or group of files that are
separated by plus signs) they follow in the command string. For example:
.DIBOL A/LIST,B
This command compiles A.DBL, producing A.OBJ and A.LST. It also compiles
B.DBL, producing B.OBJ. However, it does not produce any listing file for the
compilation of B.DBL.
/LOG
Creates a log of error messages generated by the compiler.
/[NO]OBJECT[:filespec]
/OBJECT specifies a file name or device for the object file.
Because DIBOL creates object files by default, the following two commands have
the same meaning:
.DIBOL A
.DIBOL/OBJECT A
Both commands compile A.DBL and produce A.OBJ as output. The /OBJECT
option functions like the /LIST option; it can be either a command or a file
qualifier.
As a command option, /OBJECT applies across the entire command string. The
following command, for example, compiles A.DBL and B.DBL separately, creating
object files A.OBJ and B.OBJ on DU1:
.DIBOL/OBJECT:DU1: A,B
Use /OBJECT as a file option to create an object file with a specific name
or destination. The following command compiles A.DBL and B.DBL together,
creating files B.LST and B.OBJ:
.DIBOL A+B/LIST/OBJECT
/NOOBJECT suppresses the creation of an object file. As a command option,
/NOOBJECT suppresses all object files; as a file option, it suppresses only the
object file produced by the related input files.
In this command, for example, RT–11 compiles A.DBL and B.DBL together,
producing files A.OBJ and B.LST. It also compiles C.DBL and produces C.LST,
but does not produce C.OBJ:
.DIBOL A+B/LIST,C/NOOBJECT/LIST
/ONDEBUG
Includes an expanded symbol table in the object file. You can then use a
debugging program to find and correct errors in the object file.
/PAGE:value
Overrides the default listing page length of 66 lines. The meaningful range of
values for the decimal value is 1 to 32768.
74 RT–11 Command Descriptions