When I use a library like 'ipc.lib' which includes 'a.obj' and 'b.obj', how can I put the '.text' section of 'a.obj' to a group like 'mygroup'.
Furthermore how can I just put a function of 'a.obj' in 'ipc.lib' to a group?
like this:
.FblHdr_AppStart :
{
*(.FblHdr_AppStart)
} > DDR0_APP_HDR,
RUN_START(_FblHdr_AppStart_RUN_START),
RUN_END(_FblHdr_AppStart_RUN_LIMIT)