* cygwin.sc: Raise default cygheap size to 1 Meg. Set alignment to

standard 64K.
This commit is contained in:
Corinna Vinschen 2011-02-11 12:58:01 +00:00
parent 7be671075d
commit 5ec0839c12
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2011-02-11 Corinna Vinschen <corinna@vinschen.de>
* cygwin.sc: Raise default cygheap size to 1 Meg. Set alignment to
standard 64K.
2011-02-11 Corinna Vinschen <corinna@vinschen.de>
* include/endian.h: Move definitions of __BIG_ENDIAN, __LITTLE_ENDIAN,

View File

@ -106,8 +106,8 @@ SECTIONS
{
__cygheap_mid = .;
*(.cygheap)
. = . + (512 * 1024);
. = ALIGN(512 * 1024);
. = . + (1024 * 1024);
. = ALIGN(0x10000);
}
__cygheap_end = ABSOLUTE(.);
__cygheap_end1 = __cygheap_mid + SIZEOF(.cygheap);