* cygwin.sc: Set alignment of .cygheap section to 64K.
This commit is contained in:
parent
8ec562ed28
commit
f65dbc7e27
|
@ -1,3 +1,7 @@
|
||||||
|
2011-02-18 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* cygwin.sc: Set alignment of .cygheap section to 64K.
|
||||||
|
|
||||||
2011-02-15 Corinna Vinschen <corinna@vinschen.de>
|
2011-02-15 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* spawn.cc (spawn_guts): Only set PID_NOTCYGWIN in _P_OVERLAY mode.
|
* spawn.cc (spawn_guts): Only set PID_NOTCYGWIN in _P_OVERLAY mode.
|
||||||
|
|
|
@ -104,6 +104,7 @@ SECTIONS
|
||||||
.cygheap ALIGN(__section_alignment__) :
|
.cygheap ALIGN(__section_alignment__) :
|
||||||
{
|
{
|
||||||
. = . + (1024 * 1024);
|
. = . + (1024 * 1024);
|
||||||
|
. = ALIGN(0x10000);
|
||||||
__cygheap_end = ABSOLUTE(.);
|
__cygheap_end = ABSOLUTE(.);
|
||||||
}
|
}
|
||||||
/DISCARD/ :
|
/DISCARD/ :
|
||||||
|
|
Loading…
Reference in New Issue