Skip to content
Snippets Groups Projects
Commit a87d9b18 authored by patacongo's avatar patacongo
Browse files

Oop. Part of last change was still in the editor

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5226 42af7a65-404d-4744-a932-0658087f49c3
parent d52a9c74
No related branches found
No related tags found
No related merge requests found
......@@ -97,6 +97,15 @@ SECTIONS
*(.call_table_data)
*(.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 = . ;
} > ISPACE
......@@ -108,10 +117,6 @@ SECTIONS
.data 0x00000000 :
{
__data_start = . ;
*(.rodata)
*(.rodata1)
*(.rodata.*)
*(.gnu.linkonce.r*)
*(.data)
*(.data1)
*(.data.*)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment