Sonar-scanner fails: The "build-wrapper-dump.json" file was found but 0 C/C++/Objective-C files were analyzed

Hello @Swapnil_Kadam,

Looking at the build-wrapper JSON file, it is failing to capture your compilation commands. it is only capturing the one call to the compiler arm-none-eabi-gcc.exe.

Looking at the build-wrapper log file, I see your compilation commands are done through AR19DD~1.EXE which is not recognized as a compiler henced not captured => analysis fail.

  • What is the full name of this executable AR19DD~1.EXE?
  • It might be not captured because of this shortened name of the executable. Can you try the workaround mentioned here?

Thanks,