From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Whaley Date: Mon, 14 Feb 2005 17:53:53 -0500 Subject: [U-Boot-Users] _udivsi3 and _umodsi3 from the compiler libraries instead of libarm.a Message-ID: <42112C01.9000003@applieddata.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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