2010-12-21 16 views

Respuesta

9

Creo que esto es para lo que es /FA switch.

+1

También puede '/ c' (compilar, pero no enlace) y si realmente no quieres el archivo '.obj' también puedes usar'/Fonul' para redirigirlo a nul (pero creo que todavía va a pasar tiempo construyéndolo). – Rup

+0

gracias. eso me dio asamblea! – Nawaz

2

en http://msdn.microsoft.com/en-us/library/367y26c6.aspx

Puede usar "/ fa/fa" opciones que puede utilizar ..

En los documentos allí,

CL /FAcs HELLO.CPP 

/FA Assembly code; .asm 
/FAc Machine and assembly code; .cod 
/FAs Source and assembly code; .asm 
     If /FAcs is specified, the file extension will be .cod 
/FAu Causes the output file to be created in UTF-8 format, 
     with a byte order marker. 
     By default, the file encoding is ANSI, 
     but use /FAu if you want a listing file that displays correctly on any system, 
     or if you are using Unicode source code files as input to the compiler. 
     If /FAsu is specified, and if a source code file uses Unicode encoding other than UTF-8, 
     then the code lines in the .asm file may not display correctly. 
Cuestiones relacionadas