Greetings community.
I am using CCE v2, but the problem I want to report is present in Code Generation Tools TI v3.3.3 too, as I can see here: http://e2e.ti.com/support/microcontrollers/msp43016-bit_ultra-low_power_mcus/f/166/p/113442/402230.aspx#402230 .
I am trying to allocate all the .text input sections of the rts library objects used in my project into the start of the .text output section. I have followed the instructions in the respective documentation and tried both of the following alternatives in the linker command file:
- .text : > FLASH
{
-l=rts430.lib (.text),
*(.text)
} - .text : > FLASH
{
--library=rts430.lib (.text),
*(.text)
}
None of them works, but both result in errors similar to the ones reported in the thread mentioned above. i.e.:
case 1: ../lnk_msp430f1611.cmd, line 326: error:
missing filename on -l
-l=
case 2: --
>> ../lnk_msp430f1611.cmd, line 326: error:
syntax error
I know CCE v2 is no longer supported, but since the prolbem is reported in CCS v3 too, I hope I'll get some help.
If not, any redirection to similar archived cases is welcome.
Kind regards,