diff options
Diffstat (limited to 'examples/standalone/mips.lds')
| -rw-r--r-- | examples/standalone/mips.lds | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/examples/standalone/mips.lds b/examples/standalone/mips.lds index 63a1c92ab..5f766ed37 100644 --- a/examples/standalone/mips.lds +++ b/examples/standalone/mips.lds @@ -30,14 +30,14 @@ SECTIONS  {  	.text       :  	{ -	  *(.text) +	  *(.text*)  	}  	. = ALIGN(4);  	.rodata  : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }  	. = ALIGN(4); -	.data  : { *(.data) } +	.data  : { *(.data*) }  	. = .;  	_gp = ALIGN(16) + 0x7ff0; @@ -48,12 +48,12 @@ SECTIONS  	  __got_end = .;  	} -	.sdata  : { *(.sdata) } +	.sdata  : { *(.sdata*) }  	. = ALIGN(4);  	__bss_start = .; -	.sbss (NOLOAD) : { *(.sbss) } -	.bss (NOLOAD)  : { *(.bss) . = ALIGN(4); } +	.sbss (NOLOAD) : { *(.sbss*) } +	.bss (NOLOAD)  : { *(.bss*) . = ALIGN(4); }  	_end = .;  } |