|
From: Vince W. <vi...@cs...> - 2009-05-08 16:02:44
|
On Fri, 8 May 2009, Nicholas Nethercote wrote: > Hopefully that'll work. I'm not sure about the linking step... but > the various variables with LDFLAGS in their names should control that. I found a workaround. If I keep using gcc for compiling/linking but add the following options: AM_CCASFLAGS += -ffreestanding LDFLAGS += -nostartfiles -nodefaultlibs Then gcc can build the assembly without any overhead. Thanks for the help Vince |