This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: How to limit both the size and the address range of sections in ld script?


On Fri, Mar 20, 2009 at 03:49:54PM +0800, Pan ruochen wrote:
> Dear All,
> 
> How can I implement such a ld script:
> 1. The size of sections .text .data and .bss is not beyond 128K
> 2. The sections .text .data and .bss are located within the address
> range 0x80040000~0x80080000

Start off SECTIONS with
. = 0x80040000

> If one of the conditions is false, I wish LD report an error.

After output sections,
ASSERT (. < 0x20000, "too big")

-- 
Alan Modra
Australia Development Lab, IBM


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]