This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Is CCSv5 license required on build machine using command line build?

Other Parts Discussed in Thread: CCSTUDIO

Hello,

We have full licenses on our development machines where we use the CCS IDE and we use JTAG debugging. We are developing for the C6670. On our build machines we are running command line builds as shown below. Do we need to buy a license for the build machines? I have looked at this post

http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/183959.aspx

and this wiki page

http://processors.wiki.ti.com/index.php/Licensing_-_CCS

but it isn't clear to me whether the size restrictions would apply to us (which would not be acceptable) and whether the "free license" could be used.

Our build machines run batch files like this:

set C6000_CG_DIR=c:\TI_CCS\ccsv5\tools\compiler\c6000_7.4.1
set ECLIPSE_DIR=c:\TI_CCS\ccsv5\eclipse
set SSP_PDK_C6670=%SSP_INSTALL_ROOT%\components\xmc8320\third_party\SSP_pdk_C6670_1_1_0_3
set MY_WORKSPACE=%SSP_INSTALL_ROOT%\components\xmc8320\xmc8320_workspace

IF NOT EXIST %MY_WORKSPACE% mkdir %MY_WORKSPACE%

set PROJECT_NAME=XmcPlatformLib
set PROJECT_PATH=%SSP_PDK_C6670%\ti\platform\XmcPlatformLib

::import a project to a workspace
%ECLIPSE_DIR%\eclipsec.exe -nosplash -data %MY_WORKSPACE%  -application com.ti.ccstudio.apps.projectImport -ccs.location %PROJECT_PATH% > import.log
::clean project debug configuration from the workspace
%ECLIPSE_DIR%\eclipsec.exe -nosplash -data %MY_WORKSPACE%  -application com.ti.ccstudio.apps.projectBuild  -ccs.projects %PROJECT_NAME% -ccs.clean > clean.log
::build project debug configuration from the workspace
%ECLIPSE_DIR%\eclipsec.exe -nosplash -data %MY_WORKSPACE%  -application com.ti.ccstudio.apps.projectBuild  -ccs.projects %PROJECT_NAME% -ccs.configuration Debug > build_debug.log

::delete workspace
rmdir %MY_WORKSPACE% /S /Q

Thanks,
Geraldine