Skip to content

Commit a915acb

Browse files
committed
memory: support ti section naming
TI names their sections with a `:`. For example, `.text:Fapi_issueAsyncCommand`. Add this as a recognized section prefix when placing symbols into the text section. Signed-off-by: Sean Cross <[email protected]>
1 parent 877d21b commit a915acb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

memory.x

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ SECTIONS {
1616

1717
*(.text)
1818
*(.text.*)
19+
/* TI naming convention */
20+
*(.text:*)
1921

2022
*(.rodata)
2123
*(.rodata.*)

0 commit comments

Comments
 (0)