------- Additional Comments From axelheider at gmx dot de  2007-06-23 12:05 
-------
I've installed BinUtils 2.19 and now there is some kind of work around available
that does the job quite well. Define things once in the MEMORY section and then
refer to it everywhere else using ORIGIN() and LENGTH()

-----------------------------------------------------------
MEMORY {
    FLASH : ORIGIN = 0x10000, LENGTH = 0x10000
    RAM   : ORIGIN = 0x80000, LENGTH = 0x10000
}
FLASH_START = ORIGIN(FLASH);
FLASH_END   = LENGTH(FLASH);
RAM_START   = ORIGIN(RAM);
RAM_END     = LENGTH(RAM);
-----------------------------------------------------------

Setting this issue to FIXED.


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


http://sourceware.org/bugzilla/show_bug.cgi?id=4643

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


_______________________________________________
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils

Reply via email to