Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C++ to ASM

Status
Not open for further replies.

malec

Programmer
Oct 19, 2003
1
ZA
Is there a way to convert C++ code to pure assembly code ?
 
Hi,

Yes it's possible, it depends on the compiler you use. With g++, just use the -S compiler option(Compile only, do not assemble or link).

$prompt> g++ -S main.cpp



--
Globos
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top