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

Alan Modra amodra@bigpond.net.au
Fri Mar 20 08:00:00 GMT 2009
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



More information about the Binutils mailing list