debuggers.hg
changeset 10705:984225e947f1
[VMXASSIST] Include all rodata sections into text section.
Some versions of ld put non-matched sections into random locations otherwise.
Signed-off-by: Christian Limpach <Christian.Limpach@xensource.com>
Some versions of ld put non-matched sections into random locations otherwise.
Signed-off-by: Christian Limpach <Christian.Limpach@xensource.com>
author | chris@kneesaa.uk.xensource.com |
---|---|
date | Mon Jul 10 18:35:07 2006 +0100 (2006-07-10) |
parents | 16b4abe0f925 |
children | 3addc7020107 |
files | tools/firmware/vmxassist/vmxassist.ld |
line diff
1.1 --- a/tools/firmware/vmxassist/vmxassist.ld Mon Jul 10 17:47:28 2006 +0100 1.2 +++ b/tools/firmware/vmxassist/vmxassist.ld Mon Jul 10 18:35:07 2006 +0100 1.3 @@ -11,8 +11,7 @@ SECTIONS 1.4 _btext = .; 1.5 *(.text) 1.6 *(.rodata) 1.7 - *(.rodata.str1.1) 1.8 - *(.rodata.str1.4) 1.9 + *(.rodata.*) 1.10 _etext = .; 1.11 } 1.12