summaryrefslogtreecommitdiffstats
path: root/firmware/target/arm/tcc780x/app.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/tcc780x/app.lds')
-rw-r--r--firmware/target/arm/tcc780x/app.lds11
1 files changed, 4 insertions, 7 deletions
diff --git a/firmware/target/arm/tcc780x/app.lds b/firmware/target/arm/tcc780x/app.lds
index e84ea05de7..e56c7f5cb7 100644
--- a/firmware/target/arm/tcc780x/app.lds
+++ b/firmware/target/arm/tcc780x/app.lds
@@ -51,10 +51,7 @@ SECTIONS
.rodata :
{
- *(.rodata) /* problems without this, dunno why */
*(.rodata*)
- *(.rodata.str1.1)
- *(.rodata.str1.4)
. = ALIGN(0x4);
} > DRAM
@@ -97,9 +94,9 @@ SECTIONS
.iram :
{
_iramstart = .;
- *(.irodata)
- *(.idata)
- *(.icode)
+ *(.irodata*)
+ *(.idata*)
+ *(.icode*)
. = ALIGN(0x4);
_iramend = .;
} > SRAM AT> DRAM
@@ -109,7 +106,7 @@ SECTIONS
.ibss (NOLOAD) :
{
_iedata = .;
- *(.ibss)
+ *(.ibss*)
. = ALIGN(0x4);
_iend = .;
} > SRAM