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.

loader_exit() error when launching Target Configuration File

Hi Folks,

Even though I can always run my program without visible issues, I always get this error at the beginning when I launch my Target Configuration file. Somebody else created the project in their computer, and I just downloaded it from a repository and ran it. I guess CCS is looking for exit.c on a hard-coded path that was created in the other person's computer? How can I get reed of it?

  • Hello,

    Pototo Clark said:
    I always get this error at the beginning when I launch my Target Configuration file. Somebody else created the project in their computer, and I just downloaded it from a repository and ran it. I guess CCS is looking for exit.c on a hard-coded path that was created in the other person's computer?

    You analysis is correct. Your project is likely using a library that was built on another machine (probably some run-time library) and your application ended up halted in code from the library. If you have the source file for the library, you can browse to the location of it via the "Locate File..." button. Otherwise you can ignore it.

    As for why you are halted in that function, I suspect you code hit some exception. I've seen people end up in loader_exit() due to some initialization issue with their target. Check to make sure the target is properly initialized (clocks, memory, etc). Sorry that I can not provide more specifics.

    Thanks

    ki