Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-08-08 17:53:05 +0400
committerChristopher Faylor <me@cgf.cx>2005-08-08 17:53:05 +0400
commit2e82c9355f9d42076b3da7694ed025c1c8617309 (patch)
treea9d114d7fbbc20092acd38cdbbab215996f34cf9 /winsup/cygwin/cygwin.sc
parenta8b939adc7960bebfb4ce8ea03394de6c0c5ff72 (diff)
* cygwin.sc: Use simpler method to align .cygheap.
* dllfixdbg: Just copy .stab and .stabstr sections when making cygwin1.dbg, rather than relying on objcopy to keep only the debug sections since objcopy seems to get it wrong. * dtable.cc (build_fh_pc): Check setting fh to fhandler_nodevice for NULL, too.
Diffstat (limited to 'winsup/cygwin/cygwin.sc')
-rw-r--r--winsup/cygwin/cygwin.sc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/cygwin.sc b/winsup/cygwin/cygwin.sc
index 1bfbd794a..cc2b9e6c6 100644
--- a/winsup/cygwin/cygwin.sc
+++ b/winsup/cygwin/cygwin.sc
@@ -106,7 +106,7 @@ SECTIONS
{
__cygheap_mid = .;
*(.cygheap)
- . = ALIGN(512 * 1024, 0x10000);
+ . = ALIGN(512 * 1024);
}
__cygheap_end = ABSOLUTE(.);
__cygheap_end1 = __cygheap_mid + SIZEOF(.cygheap);