C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Listing Files
                                             Up Contents Index Back
─────C/C++ Compiler─────────────────────────────────────────────────────────
 
     Option   Default Name               File Type
 
     /Fs      sourcefilename.LST         Source listing
     /Fl      sourcefilename.COD         Object listing
     /Fa      sourcefilename.ASM         Assembly listing
     /Fc      sourcefilename.COD         Combined source and object
                                         listing
     /Fm      first-sourcefilename.MAP   Linker-map
 
     The combination and listing order of options affect the result:
 
     Option          Effect
 
     /Fc             Overrides /Fa and /Fl
     /Fa and /Fl     /Fl overrides /Fa
     /Fa and /Fs     Produces combined listing
     /Fm and /c      Linking is suppressed; /Fm is ignored
     /Fe and /c      Linking is suppressed; /Fe is ignored
     /Fs and /Fl     Produces compiled source-, assembler-,
                     and machine-code listing
 
     See also: Source-Listing Format Options
               Device Names
                                    -♦-