Hi,
I am using the TI ARM Compiler and have two separate linker command files. One linker command files contains just symbols, the other contains several sections. I want to add the symbols from the first linker command file to the sections in the other linker command file. This works with the GCC Compiler when I use someting like...
SECTIONS
{
.test :
{ __STORESYMBOL = .;
LONG(SYMOBL_FROM_LINKER_CMD_FILE)
} > rom
}
Is there a way to this with the TI ARM Compiler? I have looked in the ARM Assembly Language Tools User Guide, but haven't found any documentation about that.
Tor