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
+13-15Lines changed: 13 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Source control is an absolute necessity for any software development project. If
10
10
*[Bitbucket](https://bitbucket.org/) - allows for unlimited private repositories with up to 5 collaborators, for free.
11
11
*[SourceForge](http://sourceforge.net/) - open source hosting only.
12
12
*[GitLab](https://gitlab.com/), Subversion, BitKeeper, many many others... The above are the most popular free services.
13
-
*[Visual Studio Online](https://visualstudio.com)(http://www.visualstudio.com/what-is-visual-studio-online-vs) - allows for unlimited public repositories, must pay for private repository. Repositories can be git or TFVC. Additionally: Issue tracking, project planning (multiple Agile templates, such as SCRUM), integrated hosted builds, integration of all this into Microsoft Visual Studio. Windows only.
13
+
*[Visual Studio Online](https://visualstudio.com)(http://www.visualstudio.com/what-is-visual-studio-online-vs) - allows for unlimited public repositories, must pay for private repository. Repositories can be git or TFVC. Additionally: Issue tracking, project planning (multiple Agile templates, such as SCRUM), integrated hosted builds, integration of all this into Microsoft Visual Studio. Windows only.
14
14
15
15
## Build Tool
16
16
@@ -24,7 +24,7 @@ Use an industry standard widely accepted build tool. This prevents you from rein
24
24
*[FASTBuild](http://www.fastbuild.org/)
25
25
*[Ninja](https://martine.github.io/ninja/) - can greatly improve the incremental build time of your larger projects. Can be used as a target for CMake.
26
26
*[Bazel](http://bazel.io/) - Note: MacOS and Linux only.
27
-
*[gyp](https://chromium.googlesource.com/external/gyp/) Google's build tool for chromium.
27
+
*[gyp](https://chromium.googlesource.com/external/gyp/)- Google's build tool for chromium.
28
28
29
29
Remember, it's not just a build tool, it's also a programming language. Try to maintain good clean build scripts and follow the recommended practices for the tool you are using.
30
30
@@ -40,7 +40,7 @@ Continuous Integration (CI) tools automatically build the source code as changes
@@ -51,7 +51,7 @@ Continuous Integration (CI) tools automatically build the source code as changes
51
51
* simple ad-hoc continuous integration that posts results to GitHub
52
52
* supports Windows, OS X, and Linux
53
53
* used by [ChaiScript](http://chaiscript.com/ChaiScript-BuildResults/full_dashboard.html)
54
-
*[Visual Studio Online](https://visualstudio.com)(http://www.visualstudio.com/what-is-visual-studio-online-vs)
54
+
*[Visual Studio Online](https://visualstudio.com)(http://www.visualstudio.com/what-is-visual-studio-online-vs)
55
55
* Tightly integrated with the source repositories from Visual Studio Online
56
56
* Uses MSBuild (Visual Studio's build engine), which is available on Windows, OS X and Linux
57
57
* Provides hosted build agents and also allows for user-provided build agents
@@ -60,7 +60,7 @@ Continuous Integration (CI) tools automatically build the source code as changes
60
60
61
61
If you have an open source, publicly-hosted project on GitHub:
62
62
63
-
* go enable travis-ci and AppVeyor integration right now. We'll wait for you to come back. For a simple example of how to enable it for your C++ CMake-based application, see here: https://github.com/ChaiScript/ChaiScript/blob/master/.travis.yml
63
+
* go enable Travis Ci and AppVeyor integration right now. We'll wait for you to come back. For a simple example of how to enable it for your C++ CMake-based application, see here: https://github.com/ChaiScript/ChaiScript/blob/master/.travis.yml
64
64
* enable one of the coverage tools listed below (Codecov or Coveralls)
@@ -120,10 +120,10 @@ The best bet is the static analyzer that you can run as part of your automated b
120
120
121
121
### Coverity Scan
122
122
123
-
Coverity has a free (for open source) static analysis toolkit that can work on every commit in integration with [Travis CI](http://travis-ci.org) and [AppVeyor](http://www.appveyor.com/).
123
+
[Coverity](https://scan.coverity.com/) has a free (for open source) static analysis toolkit that can work on every commit in integration with [Travis CI](http://travis-ci.org) and [AppVeyor](http://www.appveyor.com/).
124
124
125
125
### Cppcheck
126
-
Cppcheck is free and open source. It strives for 0 false positives and does a good job at it. Therefore all warnings should be enabled: `--enable=all`
126
+
[Cppcheck](http://cppcheck.sourceforge.net/) is free and open source. It strives for 0 false positives and does a good job at it. Therefore all warnings should be enabled: `--enable=all`
127
127
128
128
### Clang's Static Analyzer
129
129
@@ -143,9 +143,7 @@ Qt Creator can plug into the clang static analyzer, but *only* on the *commercia
143
143
144
144
### Metrix++
145
145
146
-
http://metrixplusplus.sourceforge.net/
147
-
148
-
While not necessarily a static analyzer, Metrix++ can identify and report on the most complex sections of your code. Reducing complex code helps you and the compiler understand it better and optimize it better.
146
+
While not necessarily a static analyzer, [Metrix++](http://metrixplusplus.sourceforge.net/) can identify and report on the most complex sections of your code. Reducing complex code helps you and the compiler understand it better and optimize it better.
149
147
150
148
## Runtime Checkers
151
149
@@ -154,10 +152,10 @@ While not necessarily a static analyzer, Metrix++ can identify and report on the
154
152
A coverage analysis tool shall be run when tests are executed to make sure the entire application is being tested. Unfortunately, coverage analysis requires that compiler optimizations be disabled. This can result in significantly longer test execution times.
@@ -166,11 +164,11 @@ A coverage analysis tool shall be run when tests are executed to make sure the e
166
164
167
165
### Valgrind
168
166
169
-
Runtime code analyzer that can detect memory leaks, race conditions, and other associated problems. It is supported on various Unix platforms.
167
+
[Valgrind](http://www.valgrind.org/) is a runtime code analyzer that can detect memory leaks, race conditions, and other associated problems. It is supported on various Unix platforms.
170
168
171
169
### Dr Memory
172
170
173
-
Similar to valgrind. http://www.drmemory.org
171
+
Similar to Valgrind. http://www.drmemory.org
174
172
175
173
### GCC / Clang Sanitizers
176
174
@@ -184,7 +182,7 @@ These tools provide many of the same features as Valgrind, but built into the co
184
182
185
183
If you project accepts user defined input, considering running a fuzzy input tester.
186
184
187
-
Both of these tools use coverage reporting to find new code executation paths and try to breed novel inputs for your code. They can find crashes, hangs, and inputs you didn't know were considered valid.
185
+
Both of these tools use coverage reporting to find new code execution paths and try to breed novel inputs for your code. They can find crashes, hangs, and inputs you didn't know were considered valid.
0 commit comments