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
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
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".
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".