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运行出现错误



各位专家好!

       我在CCS V5里下载程序到EVM板上运行完成后出现了下面的错误,请问是什么原因呢?谢谢!

Can't find a source file at "/sim/sds12/scratch/tsuch_rtsbuild_dflcmp2507.dal.design.ti.com_23248_linux/c60_rts/./exit.c"
Locate the file or edit the source lookup path to include its location.

  • 1. 这是程序跑飞了,跑到了编译器RTS库中的exit,由于该文件源码并没有包含到你的工程里,所以你看不到该函数。

    2. 你可以先在main函数处打上断点,看看是不是程序在进入到main之前就飞掉了

    3. 如果在main函数之前飞掉了,你可以在中断向量表reset处打上断点,随后单步跟踪,如果客户的中断向量表是采用自己写的汇编,可能会有些问题。