
14 Feb
2005
14 Feb
'05
11:53 p.m.
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