* cygwin.sc (.rdata): Include all sections starting with .rdata.
(.debug_pubtypes): Make sure section is loaded at the end like all other debug sections.
This commit is contained in:
parent
0246baaea2
commit
da36286e64
|
@ -1,3 +1,9 @@
|
|||
2012-07-06 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* cygwin.sc (.rdata): Include all sections starting with .rdata.
|
||||
(.debug_pubtypes): Make sure section is loaded at the end like all other
|
||||
debug sections.
|
||||
|
||||
2012-07-04 Christopher Faylor <me.cygwin2012@cgf.cx>
|
||||
|
||||
* dcrt0.cc (build_argv): Guard against NULL pointer dereference found
|
||||
|
|
|
@ -38,7 +38,7 @@ SECTIONS
|
|||
}
|
||||
.rdata ALIGN(__section_alignment__) :
|
||||
{
|
||||
*(.rdata)
|
||||
*(.rdata*)
|
||||
*(SORT(.rdata$*))
|
||||
*(.eh_frame)
|
||||
}
|
||||
|
@ -134,4 +134,5 @@ SECTIONS
|
|||
.debug_loc ALIGN(__section_alignment__) (NOLOAD) : { *(.debug_loc) }
|
||||
.debug_macinfo ALIGN(__section_alignment__) (NOLOAD) : { *(.debug_macinfo) }
|
||||
.debug_ranges ALIGN(__section_alignment__) (NOLOAD) : { *(.debug_ranges) }
|
||||
.debug_pubtypes ALIGN(__section_alignment__) (NOLOAD) : { *(.debug_pubtypes) }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue