mirror of https://github.com/xemu-project/xemu.git
Fix Sparc32 ldscript
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2733 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
2f6ecc62ee
commit
9957427e1f
3
sparc.ld
3
sparc.ld
|
@ -64,6 +64,8 @@ SECTIONS
|
||||||
CONSTRUCTORS
|
CONSTRUCTORS
|
||||||
}
|
}
|
||||||
.data1 : { *(.data1) }
|
.data1 : { *(.data1) }
|
||||||
|
.tdata : { *(.tdata) }
|
||||||
|
.tbss : { *(.tbss) }
|
||||||
.ctors :
|
.ctors :
|
||||||
{
|
{
|
||||||
*(.ctors)
|
*(.ctors)
|
||||||
|
@ -125,4 +127,5 @@ SECTIONS
|
||||||
.debug_typenames 0 : { *(.debug_typenames) }
|
.debug_typenames 0 : { *(.debug_typenames) }
|
||||||
.debug_varnames 0 : { *(.debug_varnames) }
|
.debug_varnames 0 : { *(.debug_varnames) }
|
||||||
/* These must appear regardless of . */
|
/* These must appear regardless of . */
|
||||||
|
/DISCARD/ : { *(.note.GNU-stack) *(.note.ABI-tag) }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue