You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 02-Use_the_Tools_Available.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -173,6 +173,8 @@ The best bet is the static analyzer that you can run as part of your automated b
173
173
174
174
Clang's analyzer's default options are good for the respective platform. It can be used directly [from CMake](http://garykramlich.blogspot.com/2011/10/using-scan-build-from-clang-with-cmake.html). They can also be called via clang-check and clang-tidy from the [LLVM-based Tools](#llvm-based-tools).
175
175
176
+
Also, [CodeChecker](https://github.com/Ericsson/CodeChecker) is available as a front-end to clang's static analysis.
177
+
176
178
### MSVC's Static Analyzer
177
179
178
180
Can be enabled with the `/analyze`[command line option](http://msdn.microsoft.com/en-us/library/ms173498.aspx). For now we will stick with the default options.
@@ -295,3 +297,7 @@ Don't forget to make sure that your error handling is being tested and works pro
295
297
### SourceMeter
296
298
297
299
[SourceMeter](https://www.sourcemeter.com/) offers a free version which provides many different metrics for your code and can also call into cppcheck.
300
+
301
+
### Bloaty McBloatface
302
+
303
+
[Bloaty McBloatface](https://github.com/google/bloaty) is a binary size analyzer/profiler for unix-like platforms
0 commit comments