I have a CCS 4.2 project that I have imported into 5.1 and I get the following error:
"C:/TexasInstruments/xdctools_3_22_04_46/xs"
--xdcpath="C:/TexasInstruments/pdk_c64x_1_00_00_06/packages;
C:/TexasInstruments/edma3_lld_02_10_03_04/packages;
C:/TexasInstruments/ipc_1_23_05_40/packages;
C:/TexasInstruments/mcsdk_1_00_00_08/packages;
C:/TexasInstruments/ndk_2_20_06_35/packages;
C:/TexasInstruments/bios_6_32_05_54/packages;
C:/TexasInstruments/uia_1_00_03_25/packages;
C:/TexasInstruments/xdais_7_21_01_07/packages;
C:/TexasInstruments/xdais_7_21_01_07/examples;"
xdc.tools.configuro -o configPkg -t ti.targets.C64P -p ti.platforms.evm6472 -r release -c "C:/TexasInstruments/ccsv5/tools/compiler/c6000" "../DRTS_500_CORE_0.cfg"
configuring DRTS_500_CORE_0.x64P from package/cfg/DRTS_500_CORE_0_p64P.cfg ...
js: "C:/TexasInstruments/xdctools_3_22_04_46/packages/xdc/cfg/Main.xs", line 156:
Error: incompatible use of package 'ti.platforms.evm6472' [in C:/TexasInstruments/xdctools_3_22_04_46/packages/ti/platforms/evm6472/]:
version of the loaded package 'ti.platforms.evm6472' is [],
while 'ti.sysbios' [in C:/TexasInstruments/bios_6_32_05_54/packages/ti/sysbios/] was built with 'ti.platforms.evm6472' [1, 0, 0, 1315004616735]
Adding the following line to your program configuration script:
environment['xdc.cfg.check.fatal'] = 'false';
converts this incompatibility error into a warning. Please, check the documentation for the package xdc.cfg for more information.
xdctools_3_22_04_46\gmake.exe: *** [package/cfg/DRTS_500_CORE_0_p64P.xdl] Error 1
xdctools_3_22_04_46\gmake.exe: *** [package/cfg/DRTS_500_CORE_0_p64P.xdl] Deleting file `package/cfg/DRTS_500_CORE_0_p64P.h'
xdctools_3_22_04_46\gmake.exe: *** [package/cfg/DRTS_500_CORE_0_p64P.xdl] Deleting file `package/cfg/DRTS_500_CORE_0_p64P.c'
js: "C:/TexasInstruments/xdctools_3_22_04_46/packages/xdc/tools/Cmdr.xs", line 51: Error: xdc.tools.configuro: configuration failed due to earlier errors (status = 2); 'linker.cmd' deleted.
gmake: *** [configPkg/compiler.opt] Error 1
gmake: Target `all' not remade because of errors.
**** Build Finished ****
If I add the suggested line to the cfg file, the error is resolved and the projects build fully and runs. But I would like to know what
the error is about and how I can resolve it properly. This project has been built with CCS 3.3 and 4.2 successfully and this is the first time I have encountered this
particular issue.