forked from Archive/PX4-Autopilot
Oop. Part of last change was still in the editor
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5226 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
ed4550ff48
commit
6cb1bc7e67
|
@ -97,6 +97,15 @@ SECTIONS
|
||||||
*(.call_table_data)
|
*(.call_table_data)
|
||||||
*(.call_table_text)
|
*(.call_table_text)
|
||||||
|
|
||||||
|
/* In this model, .rodata is access using PC-relative addressing
|
||||||
|
* and, hence, must also reside in the .text section.
|
||||||
|
*/
|
||||||
|
|
||||||
|
*(.rodata)
|
||||||
|
*(.rodata1)
|
||||||
|
*(.rodata.*)
|
||||||
|
*(.gnu.linkonce.r*)
|
||||||
|
|
||||||
_etext = . ;
|
_etext = . ;
|
||||||
|
|
||||||
} > ISPACE
|
} > ISPACE
|
||||||
|
@ -108,10 +117,6 @@ SECTIONS
|
||||||
.data 0x00000000 :
|
.data 0x00000000 :
|
||||||
{
|
{
|
||||||
__data_start = . ;
|
__data_start = . ;
|
||||||
*(.rodata)
|
|
||||||
*(.rodata1)
|
|
||||||
*(.rodata.*)
|
|
||||||
*(.gnu.linkonce.r*)
|
|
||||||
*(.data)
|
*(.data)
|
||||||
*(.data1)
|
*(.data1)
|
||||||
*(.data.*)
|
*(.data.*)
|
||||||
|
|
Loading…
Reference in New Issue