| To: | zhuzhenhua <zzh.hust@gmail.com> |
|---|---|
| Subject: | Re: BFD: Warning: Writing section `.text' to huge (ie negative) file offset 0xa1ffff10 |
| From: | Thiemo Seufer <ths@networkno.de> |
| Date: | Thu, 1 Jun 2006 10:24:13 +0100 |
| Cc: | linux-mips <linux-mips@linux-mips.org> |
| In-reply-to: | <50c9a2250605312319v7480f2el36d9c0a052c85d5f@mail.gmail.com> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <50c9a2250605312319v7480f2el36d9c0a052c85d5f@mail.gmail.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Mutt/1.5.11+cvs20060403 |
zhuzhenhua wrote:
> i have write a code to link at 0xa2000000(uncached address)
> but when link i get the error as
> "BFD: Warning: Writing section `.text' to huge (ie negative) file
> offset 0xa1ffff10.
> BFD: Warning: Writing section `.data' to huge (ie negative) file
> offset 0xa200b050.
> BFD: Warning: Writing section `.reginfo' to huge (ie negative) file
> offset 0xa200c980.
> mipsel-linux-objcopy: /root/project/brec_flash/release/brec_flash.bin:
> File truncated
> make: *** [brec_flash] Error 1"
>
> my link.xn as follow:
>
> OUTPUT_ARCH(mips)
> ENTRY(brec_flash_entry)
> SECTIONS
> {
> .text 0xa2000000 :
Use
. = 0xa2000000;
.text :
instead. "info ld" explains the subtle difference.
Thiemo
|
| Previous by Date: | [PATCH netdev-2.6#upstream] net: au1000_eth: PHY framework conversion, Herbert Valerio Riedel |
|---|---|
| Next by Date: | Re: BFD: Warning: Writing section `.text' to huge (ie negative) file offset 0xa1ffff10, zhuzhenhua |
| Previous by Thread: | BFD: Warning: Writing section `.text' to huge (ie negative) file offset 0xa1ffff10, zhuzhenhua |
| Next by Thread: | Re: BFD: Warning: Writing section `.text' to huge (ie negative) file offset 0xa1ffff10, zhuzhenhua |
| Indexes: | [Date] [Thread] [Top] [All Lists] |