* cygwin.sc: Raise default cygheap size to 1 Meg. Set alignment to
standard 64K.
This commit is contained in:
parent
7be671075d
commit
5ec0839c12
|
@ -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,
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue