I understand that you are facing issue in deploying the code to the c2000 board.
The warning message "Unable to remove spaces from file path" indicates that spaces in the path (such as in "Program Files") might be causing the build process to fail.
To address this issue, consider the following workaround:
1.If you're using the toolchain approach to build generated code, check if 8dot3 name creation is enabled for the volume "D".
To do this, run the Windows Command Prompt as an administrator and enter the following command
codefsutil 8dot3name query
If the command returns 0, 8dot3 name creation is enabled.
2. If it returns a non-zero value, you can enable it by running this command:
codefsutil 8dot3name set D: 0
3.Specify a short name for the file path by running the following command
fsutil file setshortname <longname> <8.3name>
% Example to provide short name for path "C:\Program Files" as PR0G
fsutil file setshortname "C:\Program Files" PROG
For more information on the above mentioned commands, refer to the following documentation:
I hope this helps!