Hi,
I am trying to selectively place the .text section of some files into a different memory using linker cmd file.
SECTIONS
{
.my_text: {
fsf.obj (.text)
} > L2RAM
.text > DDR
}
The above syntax works, where fsf.obj is our project file. However if I replace the above with the divd.obj file of the rtslib, it fails.
SECTIONS
{
.my_text: {
divd.obj (.text)
} > L2RAM
.text > DDR
}
error message
Compilation failure
"../BootLoader.cmd", line 13: warning #10068-D: no matching section divd.obj (.text)
GanZ