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-06-09 00:18:23 +0400
committerChristopher Faylor <me@cgf.cx>2005-06-09 00:18:23 +0400
commitad96f0997befb422b4d1af497e08dc5a1fa98152 (patch)
tree66c1fecdc8c4bf600f63c40c023995873b9c5bb4
parent8741a5314bb6ccc094626d57b56f1d667da76797 (diff)
* cygwin.sc: Restore resource and reloc sections and use more modern syntax for
stabs sections.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/cygwin.sc15
2 files changed, 16 insertions, 4 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 3b0329ba4..7f449cf10 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,10 @@
2005-06-08 Christopher Faylor <cgf@timesys.com>
+ * cygwin.sc: Restore resource and reloc sections and use more modern
+ syntax for stabs sections.
+
+2005-06-08 Christopher Faylor <cgf@timesys.com>
+
* environ.cc (spenvs): Remove cut/paste error which associated
CYGWIN_DEBUG with HOME.
diff --git a/winsup/cygwin/cygwin.sc b/winsup/cygwin/cygwin.sc
index 195a6b2dd..855bbab9e 100644
--- a/winsup/cygwin/cygwin.sc
+++ b/winsup/cygwin/cygwin.sc
@@ -57,22 +57,29 @@ SECTIONS
{
*(.edata)
}
+ .rsrc BLOCK(__section_alignment__) :
+ {
+ *(.rsrc)
+ *(SORT(.rsrc$*))
+ }
+ .reloc BLOCK(__section_alignment__) :
+ {
+ *(.reloc)
+ }
/DISCARD/ :
{
*(.debug$S)
*(.debug$T)
*(.debug$F)
*(.drectve)
- *(.reloc)
- *(.rsrc)
}
.stab ALIGN(__section_alignment__) (NOLOAD) :
{
- [ .stab ]
+ *(.stab)
}
.stabstr ALIGN(__section_alignment__) (NOLOAD) :
{
- [ .stabstr ]
+ *(.stabstr)
}
/* DWARF 1.1 and DWARF 2 */
.debug_aranges ALIGN(__section_alignment__) (NOLOAD) : { *(.debug_aranges) }