All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot-Users] _udivsi3 and _umodsi3 from the compiler libraries instead of libarm.a
@ 2005-02-14 22:53 Robert Whaley
  2005-02-14 23:35 ` Wolfgang Denk
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Whaley @ 2005-02-14 22:53 UTC (permalink / raw)
  To: u-boot

I had a problem linking u-boot for an IXP425 (ARM) board.  The problem 
was that _udivsi3 and _umodsi3 were being satisfied from the compiler 
libraries instead of libarm.a.

One fix that works is to change this line in the top level Makefile:

--start-group $(LIBS) $(PLATFORM_LIBS) --end-group \

To this:

--start-group $(LIBS) --end-group $(PLATFORM_LIBS) \

I'm concerned that this might break other stuff.  Is there a better way 
to fix this?

Robert

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-02-15  0:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-14 22:53 [U-Boot-Users] _udivsi3 and _umodsi3 from the compiler libraries instead of libarm.a Robert Whaley
2005-02-14 23:35 ` Wolfgang Denk
2005-02-14 23:56   ` Robert Whaley
2005-02-15  0:33     ` Wolfgang Denk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.