[U-Boot-Users] _udivsi3 and _umodsi3 from the compiler libraries instead of libarm.a

Robert Whaley rwhaley at applieddata.net
Mon Feb 14 23:53:53 CET 2005


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




More information about the U-Boot mailing list