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.

Errors in the console view

Hello,

I'm using CCS5v5.1.1. It sometimes happens with me that there are no errors in the problems view, but the console shows this type of errors:

1. gmake: Nothing to be done for `all'.

2. gmake nothing to build 

3. error: file '../fpu.lib' has incompatible ABI

For the first error, I tried using internal builder as suggested in another post, but that after some builds, the error shows up again.
What could be the possible reasons for these errors, and their possible remedies?
Kindly help.
  • Hello,

    Jasmeet Kaur97544 said:
    1. gmake: Nothing to be done for `all'.

    CCS will do an incremental build. So if your project us already up to date, CCS will not rebuild and you will see the message above.

    Jasmeet Kaur97544 said:
    2. gmake nothing to build 

    You would see such a message if there was no valid source file to build in your project

    Jasmeet Kaur97544 said:
    3. error: file '../fpu.lib' has incompatible ABI

    I think that happens when you are trying to link in libraries of a different file format than what you are building your project for (like mixing COFF AND ELF)

    Thanks

    ki