I'm using the secure boot, so there are some SK_API calls in my project.
I can build my project successfully with COFF output format.
But when I try to build the project with ELF output format, there is a error:
So I find the lib file in \ti\ccsv5\tools\compiler\c6000_7.4.4\lib,
there is a rts64plus_elf.lib and a rts64plus.lib.
I think the rts64plus.lib is COFF format, and the rts64plus.lib is ELF format.
So, I changed the name of rts64plus_elf.lib to rts64plus.lib, and rebuild the project, but got:
So, I think the rts64plus_elf.lib doesn't have the SK_APIs.
Is there anyway to convert the COFF lib to ELF lib?
Or, is there any ELF format rts64plus.lib?
Thank you.