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
bumped minimum requirements to GCC 5.1 / Clang 3.5 / Visual Studio 2015 / CMake 3.5 (#5398)
The current versions only have partial C++11 support which fortunately
has caused us only few issues so far but it would be good to finally
have fully working C++11 support. This also gets rid of several CI
builds on very outdated platforms.
The outdated platforms were used to also test CMake 2.8 but as future
versions of CMake will drop combability with CMake < 3.5 this is a good
time to also drop that requirement on our part.
This PR does not remove or update any outdated code.
Copy file name to clipboardExpand all lines: readme.md
+13-11
Original file line number
Diff line number
Diff line change
@@ -27,22 +27,24 @@ You can stop the script whenever you like with Ctrl C.
27
27
28
28
## Compiling
29
29
30
-
Any C++11 compiler should work. For compilers with partial C++11 support it may work. If your compiler has the C++11 features that are available in Visual Studio 2013 / GCC 4.8 then it will work.
30
+
Cppcheck requires a C++ compiler with (partial) C++11 support. Minimum required versions are GCC 5.1 / Clang 3.5 / Visual Studio 2015.
31
31
32
-
To build the GUI, you need Qt.
32
+
To build the GUI application, you need to use the CMake or qmake (deprecated) build system.
33
33
34
34
When building the command line tool, [PCRE](http://www.pcre.org/) is optional. It is used if you build with rules.
0 commit comments