Re: suffix or operands invalid for
Robert Plantz <[email protected]> Fri, 22 Dec 2006 11:15:58 -0800
| Newsgroups | org.kernel.vger.linux-assembly |
|---|---|
| Message-ID | <1166814958.4573.64.camel@localhost> |
On Fri, 2006-12-22 at 13:05 -0600, Kenton Brede wrote:
> I tried that and the output of gcc gave me enough information that I
> was able to get the prog to compile on the system.
Another program you may find useful is
objdump -d myProg
where "myProg" is the name of your executable. This will give you a
disassembled view of your program as it looks in memory. You can see
where the external library functions are called, etc. It's a long
display, so pipe it through more or less.