COBOL Manual for TNS/E Programs (H06.03+)

Program Compilation
HP COBOL Manual for TNS/E Programs520347-003
11-18
Compiler Output
Compiler Output
The output of a compilation can include a listing (to an existing file or spooler) and an
object file, but it always includes compilation statistics and a completion code. You can
manipulate the object file.
Topics:
Listing Creation
Object File Creation
Manipulating Object Files
Compilation Statistics
Completion Codes
Listing Creation
The listing is added to the end of the listing (OUT) file. The listing file can be either a
disk file or nondisk file (see Starting a Compilation). If it is a disk file, it must exist
before you start the compilation.
To create a listing file, use the command:
disk-file-name
is a disk file name (see the Guardian Procedure Calls Reference Manual).
pages
is the number of extended segment pages.
TYPE E
specifies an entry-sequenced file.
REC 132
specifies 132-character records (partial lines are space-filled on the right through
column 132).
EXT pages
is necessary only if disk-file-name exceeds the standard number of allocated
segments.
For more information, see Source Program Listing.
FUP CREATE disk-file-name, TYPE E, REC 132[, EXT pages]