ILE C/C++ Programmer's Guide

Listing Output

The compiler can send the listing output to a user-specified IFS file, as well as to a spool file. The prolog identifies the source file from a path name:

+--------------------------------------------------------------------------------+
|Module  . . . . . . . . . . . . :   TEST                                        |
|  Library . . . . . . . . . . . :     MOE                                       |
|Source stream file  . . . . . . :   /home/MOE/src/mainprogram.c                 |
+--------------------------------------------------------------------------------+
Note:
The source stream file is not included in the prolog when SRCFILE() and SRCSTMF() are specified.

The listing also identifies the include files from their path names:

  **** FILE TABLE SECTION ****
     0 = hello.cpp
     1 = /QIBM/include/iostream.h
     2 = /QIBM/include/string.h

The listing includes:

Note:
This happens for either a database file or a stream file source.

The format of the OUTPUT option is: OUTPUT(*NONE | *PRINT | filename), where *PRINT causes the compiler to send it to a spool file, and filename causes the compiler to send it to a user-specified IFS file.


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