This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Segger embedded studio- static analysis tool error vfpcc

Dear Sir,

Using NRF-52833 dev kit on SES. I tried to run the static analysis tool, getting error  'unknown register name 'vfpcc' in asm.'

This error appears for every file.

SES is enabled with GCC compiler.

Regards,

Lakshmi

Parents
  • Hello,

    To run the Segger Studio static analysis tool; I suggest to make a separate build configuration named "Analysis" and add the preprocessor flags:

    __SOFTFP__

    __LINT__

    (Or just add them in for instance the Debug configuration, remember to remove them later).

    This will disable FPU, but it makes static analysis work, at least for me. Now, right click a file.c and run "Run Static Code Analyzer".

Reply
  • Hello,

    To run the Segger Studio static analysis tool; I suggest to make a separate build configuration named "Analysis" and add the preprocessor flags:

    __SOFTFP__

    __LINT__

    (Or just add them in for instance the Debug configuration, remember to remove them later).

    This will disable FPU, but it makes static analysis work, at least for me. Now, right click a file.c and run "Run Static Code Analyzer".

Children
No Data
Related