My system is a Microsoft XP operating system.
I was unable to get the common make file in the examples directory to correctly operate with the CCSv4 installation paths that contained spaces.
I provided quotations around the paths as directed in the lesson, but these did not provide correct operation and resulted in errors.
I then copied the xdctools_3_15_03_67 directory and the c6000 compiler directory to my F drive while leaving the CCS4 paths unchanged.
This change allowed me to use the tools in paths that did not contain spaces:
F:\RTSCExamplePackages\RTSCModuleExamples\lesson1>gmake all
F:/xdctools_3_15_03_67/xs xdc.tools.configuro -c F:/c6000Compiler -t ti.targets.C64P -p ti.platforms.sim64Pxx -o cfgsite prog.cfg
making package.mak (because of package.bld) ...
generating interfaces for package cfgsite (because package/package.xdc.inc is older than package.xdc) ...
configuring prog.x64P from package/cfg/prog_x64P.cfg ...
cl64P package/cfg/prog_x64P.c ...
F:/c6000Compiler/bin/cl6x -q -@cfgsite/compiler.opt -c prog.c
F:/c6000Compiler/bin/cl6x -q -z -c prog.obj cfgsite/linker.cmd -o prog.out -l F:/c6000Compiler/lib/rts64plus.lib
F:\RTSCExamplePackages\RTSCModuleExamples\lesson1>
Lee