Changeset 07d960a in mainline for libc/arch/ppc32/_link.ld.in


Ignore:
Timestamp:
2006-05-22T17:14:32Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
53ca318
Parents:
8bc924e
Message:

Change linker scripts so that heap a dedicated address space area can be allocated for heap.
This will be essential in separating anonymous memory and memory backed by some other memory object.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/arch/ppc32/_link.ld.in

    r8bc924e r07d960a  
    3636                *(COMMON);
    3737                *(.bss);
    38                 _heap = .;
    39                 LONG(0xdeadbeef);
    4038        } :data
     39
     40        . = ALIGN(0x1000);
     41        _heap = .;
    4142       
    4243        /DISCARD/ : {
Note: See TracChangeset for help on using the changeset viewer.