We are converting an app from dvdsk_1_01 to dvdsk_2_00 and must keep a proper separation of the dependencies in order to guarantee that we have a properly built application when we are switching between different dvsdk revs.
I am using CCS rev.3.3 and must on occasion switch between xdctool that are either in dvsdk1_01 or in dvsdk2_00. For example, when I am in dvsdk_1_01 I will see:
[dm6437_demo.cfg] "C:\dvsdk_1_01_00_15\xdc_2_95_02\xs.exe" xdc.tools.configuro.ccs --xdcpathsfile="xdcpaths.dat" -pti.platforms.evmDM6437 -rdebug --tcf -t ti.targets.C64P -c "C:/CCStudio_v3.3/C6000/cgtools" --bios "C:/CCStudio_v3.3/bios_5_31_07" -o "xdcconfig" dm6437_demo.cfg
and when I am in dvsdk_2_00 I should see something like this:
[dm6437_demo.cfg] "C:\dvsdk_1_11_00\xdc_2_95_02\xs.exe" xdc.tools.configuro.ccs --xdcpathsfile="xdcpaths.dat" -pti.platforms.evmDM6437 -rdebug --tcf -t ti.targets.C64P -c "C:/CCStudio_v3.3/C6000/cgtools" --bios "C:/CCStudio_v3.3/bios_5_31_07" -o "xdcconfig" dm6437_demo.cfg
In this example in both cases the same xs.exe is executed since both are from the same rev of xdc_2_95 but in the next step when I will switch to rev xdc_3_00 I want to be sure that I am executing "...\xdc_3_00\xs.exe" and not executing old "...\xdc_2_95_02\xs.exe".
How (where the control is located) I control the selection of xdc version in CCS rev.3.3 so the intended xs.exe is selected?
Thanks,
Ja