diff options
author | Christopher Faylor <me@cgf.cx> | 2006-07-14 19:33:55 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-07-14 19:33:55 +0000 |
commit | ebc223f182d9c276c715c9a3683a7302f4c98fe6 (patch) | |
tree | d5ef4d5fa8889c198891592503ebdc4582c50eb5 /winsup/cygwin/cygwin.sc | |
parent | 62f94a893e01ac6542ec798bc7967da105c05e4c (diff) | |
download | cygnal-ebc223f182d9c276c715c9a3683a7302f4c98fe6.tar.gz cygnal-ebc223f182d9c276c715c9a3683a7302f4c98fe6.tar.bz2 cygnal-ebc223f182d9c276c715c9a3683a7302f4c98fe6.zip |
* cygwin.sc: Make sure there's something in the cygheap.
* dllfixdbg: Accommodate newer binutils which put the gnu_debuglink at the end
rather than at the beginning.
Diffstat (limited to 'winsup/cygwin/cygwin.sc')
-rw-r--r-- | winsup/cygwin/cygwin.sc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/cygwin.sc b/winsup/cygwin/cygwin.sc index cc2b9e6c6..58ee37664 100644 --- a/winsup/cygwin/cygwin.sc +++ b/winsup/cygwin/cygwin.sc @@ -106,6 +106,7 @@ SECTIONS { __cygheap_mid = .; *(.cygheap) + . = . + 1; . = ALIGN(512 * 1024); } __cygheap_end = ABSOLUTE(.); |