naggy
naggy copied to clipboard
A live compiler diagnostics extension for Atmel Studio
If project file settings are changed, files already open in the editor (for whom ClangAdapters would have already been created) need to refresh things they read from the project at...
Use Atmel Studio's SDK to read project settings and toolchain options rather than relying on xml tag names in the project file and automation project properties.
http://clang-analyzer.llvm.org/
For a source file Test.c and a header file Test.h, if both Test.c and Test.h are open in the editor and Test.h is changed, the diagnostics shown in Test.c don't...
The diagnostics get all messed up if there are files with the same name (but in different directories) and more than one of the files is open in the editor.
In some cases, the diagnostics provided by Clang includes the character position (along with the range). That information is not being used right now. It can be useful in cases...