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.

C6678 PDK Demo出错



安装了TI的Mcsdk运行csl库里的例程,报如下错误:

js:"C:/Program Files/Texas Instruments/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.

下面是Cmdr.xs 文件line51(红色字体)内容:

/*======error=======*/

function error(msg)

{

var inst=this.$private;

switch(inst.self.context) {

case Cmdr.SCRIPT:

throw new Error(inst.cmdname +“:”+(msg ? msg : 'fatal error') );

break;

case Cmdr.SHELL:

throw new Error (this.$private.cmdname

+ " : " +(msg ? msg : 'fatal error') );

break;

}

}