From: Robert Whaley <rwhaley@applieddata.net>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] _udivsi3 and _umodsi3 from the compiler libraries instead of libarm.a
Date: Mon, 14 Feb 2005 17:53:53 -0500 [thread overview]
Message-ID: <42112C01.9000003@applieddata.net> (raw)
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
next reply other threads:[~2005-02-14 22:53 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-02-14 22:53 Robert Whaley [this message]
2005-02-14 23:35 ` [U-Boot-Users] _udivsi3 and _umodsi3 from the compiler libraries instead of libarm.a Wolfgang Denk
2005-02-14 23:56 ` Robert Whaley
2005-02-15 0:33 ` Wolfgang Denk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=42112C01.9000003@applieddata.net \
--to=rwhaley@applieddata.net \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.