diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/cygwin.sc | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index eb1c6b2..14a52ed 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2005-06-09 Christopher Faylor <cgf@timesys.com> + * cygwin.sc: Place .cygwin_dll_common in a more sensible spot. + +2005-06-09 Christopher Faylor <cgf@timesys.com> + * cygwin.sc: Place .cygwin_dll_common. * init.cc (threadfunc_ix): Use a more common name for the section name. diff --git a/winsup/cygwin/cygwin.sc b/winsup/cygwin/cygwin.sc index 598690f..2a17766 100644 --- a/winsup/cygwin/cygwin.sc +++ b/winsup/cygwin/cygwin.sc @@ -66,6 +66,10 @@ SECTIONS { *(.reloc) } + .cygwin_dll_common ALIGN(__section_alignment__): + { + *(.cygwin_dll_common) + } .idata ALIGN(__section_alignment__) : { /* This cannot currently be handled with grouped sections. @@ -81,10 +85,6 @@ SECTIONS . = ALIGN(16); __cygheap_start = ABSOLUTE(.); } - .cygwin_dll_common ALIGN(__section_alignment__): - { - *(.cygwin_dll_common) - } .cygheap ALIGN(__section_alignment__): { __cygheap_mid = .; |