From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Plantz Subject: Re: suffix or operands invalid for Date: Fri, 22 Dec 2006 11:15:58 -0800 Message-ID: <1166814958.4573.64.camel@localhost> References: <458BD4BB.1050502@verizon.net> <1166804181.4573.20.camel@localhost> <1166806530.4573.35.camel@localhost> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Sender: linux-assembly-owner@vger.kernel.org List-Id: Content-Type: text/plain; charset="us-ascii" To: Kenton Brede Cc: linux-assembly@vger.kernel.org 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.