Hello!
I have prepared simple SYS/BIOS application for EVMC6670L. It contains clock function to periodically toggle LED. To control LEDs there is platform function provided in platform_lib, shipped with PDK. So I have added compiler include search path as "${TI_PDK_INSTALL_DIR}/packages/ti/platform", added "ti.platform.evm6670l.ae66" as input to linker, and "${TI_PDK_INSTALL_DIR}/packages/ti/platform/evmc6670l/platform_lib/lib/debug" as linker search path. This way my application compiles and runs on EVM. I see LED blinking as I expect.
What makes me worry is that linking process issues a warning:
#10247-D creating output section "platform_lib" without a SECTIONS specification
My memory of DSP/BIOS is telling me that probably I have to instruct linker how to handle platform library. At this step I did not create any custom linker command file. In project properties under CCS General, Linker command file there is blank. I see automatically generated linker.cmd under Debug\configPkg\ and seems nothing in it is related to platform lib.
Please suggest, how do I fix my situation.
Thanks in advance.