Board index » cppbuilder » Re: Anyway to compile to assembly language?

Re: Anyway to compile to assembly language?


2008-02-06 01:02:51 AM
cppbuilder57
Alex Bakaev [TeamB] wrote:
Quote

This seems like a bug then.
No, it's actually documented behavior.
It was one of my first successful searches in the BDS 2006 help :-), but
a search for "#pragma option" returned a page of helpful documentation.
It clearly states that both -B and -S are not allowed in a #pragma
option statement for C++.
The key parts of the documentation are copied below.
#pragma option [options...]
options can be any command-line option (except those listed in the
following paragraph)
...
Options that cannot appear in a pragma option include:
[C++]B
[C++]c
[C++]dname
[C++]Dname=string
[C++]efilename
[C++]E
[C++]Fx
[C++]h
[C++]Ifilename
[C++]lexset
[C++]M
[C++]o
[C++]P
[C++]Q
[C++]S
[C++]T
[C++]Uname
[C++]V
[C++]X
[C++]Y
[C++]
Dennis Cote
 
 

Re:Re: Anyway to compile to assembly language?

Dennis Cote wrote:
Quote
It clearly states that both -B and -S are not allowed in a #pragma
option statement for C++.

Oh well...