Question
How To Extract Input Sections From A Particular Object File
Hello,
I'd like to create an output section called .cal_data capturing constants from a particular object file called const_params.o so I have created the following additional linker script entry based on the GNU syntax:
.cal_data :
{
const_params.o(.rodata)
} > FLASHHowever, the linker (I'm using version 1.10.1) can't find the file:
ld.exe: cannot find const_params.oPlease can you help me find the correct syntax to achieve my objective.
Thank you very much.
