Please consider that this intrusive sentence could instead be proclaiming that you help sponsor this research.

Home > Programming > Tools > Visual C++ > Compiler > Options

CL /Fa

The /Fa option asks that an assembly-language listing be created for each source file.

Syntax

/Fa[pathname]

The optional pathname follows immediately within the one command-line token. If pathname ends in a forward slash or backslash, it names a directory for the listing files, which will be named by default. Otherwise, pathname names a single listing file, and at most the file extension is left to a default. It is an error (D2036) to use the single-file form when compiling multiple source files. The default name for a listing file is the same as its source file, but with the extension changed to “.asm”, unless a /FA option sets the default extension to “.cod”.

Relations

The /Fa option overrides earlier instances of itself (and is overridden by later instances). Additionally, /Fa

This option passes to the back-end C/C++ compiler (C2) only, as -Fa pathname, with pathname now naming one listing file.

Behaviour

A listing file is to be produced for each source file. The /Fa option is concerned with naming the listing files. The style of listing is left to the /FA option. In default of a /FA option, the listings will have just the a style.

This page was created on 27th October 2005. The last significant modification was on 7th April 2006.

Copyright © 2005-2006. Geoff Chappell. All rights reserved.

Please consider that this intrusive sentence could instead be proclaiming that you help sponsor this research.

Home > Programming > Tools > Visual C++ > Compiler > Options

[Home][Programming Samples][Application Notes][Security Notes][Editorial][Consultation][Contacts]