Skip to content

Commit 07d730e

Browse files
committed
bumped minimum GCC version to 4.8
1 parent 90a38a9 commit 07d730e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

cmake/compilerCheck.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
if (CMAKE_CXX_COMPILER_ID MATCHES "GNU")
2-
if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.6)
3-
message(ERROR "GCC >= 4.6 required - detected ${CMAKE_CXX_COMPILER_VERSION} not supported")
2+
if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8)
3+
message(ERROR "GCC >= 4.8 required - detected ${CMAKE_CXX_COMPILER_VERSION} not supported")
44
endif ()
55
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
66
# TODO: verify this

philosophy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ This is not just a tool for mainstream gcc/msvc c/c++ developers. If you can com
5656

5757
## C++ language
5858

59-
Our goal is to be highly portable. Users must be able to compile Cppcheck with GCC 4.6 or MSVS 2013.
59+
Our goal is to be highly portable. Users must be able to compile Cppcheck with GCC 4.8 or Visual Studio 2013.
6060

61-
No C++14 is allowed. A subset of the C++11 is allowed.
61+
No C++14 is allowed. A subset of C++11 is allowed.
6262

6363

6464
## Avoid dependencies

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You can stop the script whenever you like with Ctrl C.
2727

2828
## Compiling
2929

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.6 then it will work.
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.
3131

3232
To build the GUI, you need Qt.
3333

@@ -39,7 +39,7 @@ There are multiple compilation choices:
3939
* Windows: Visual Studio (VS 2013 and above)
4040
* Windows: Qt Creator + mingw
4141
* gnu make
42-
* g++ 4.6 (or later)
42+
* g++ 4.8 (or later)
4343
* clang++
4444

4545
### cmake

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Manual
1515
Compiling
1616

1717
Any C++11 compiler should work. For compilers with partial C++11 support it may work. If
18-
your compiler has the C++11 features that are available in Visual Studio 2013 / GCC 4.6
18+
your compiler has the C++11 features that are available in Visual Studio 2013 / GCC 4.8
1919
then it will work.
2020

2121
To build the GUI, you need Qt.
@@ -36,7 +36,7 @@ Compiling
3636
* Windows: Visual Studio
3737
* Windows: Qt Creator + mingw
3838
* gnu make
39-
* g++ 4.6 (or later)
39+
* g++ 4.8 (or later)
4040
* clang++
4141

4242
cmake

readmeja.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
## ビルド
1818

19-
C++11に対応したコンパイラが利用できます。部分的にC++11にサポートしたコンパイラも利用できるかもしれません。もし、あなたのコンパイラがVisual Studio 2013や GCC 4.6で利用できるC++11機能がサポートされているなら、そのコンパイラが利用できます。
19+
C++11に対応したコンパイラが利用できます。部分的にC++11にサポートしたコンパイラも利用できるかもしれません。もし、あなたのコンパイラがVisual Studio 2013や GCC 4.8で利用できるC++11機能がサポートされているなら、そのコンパイラが利用できます。
2020

2121
GUIも利用する場合、Qtライブラリが必要です。
2222

@@ -28,7 +28,7 @@ GUIも利用する場合、Qtライブラリが必要です。
2828
* Windows: Visual Studio (VS 2013 またはそれ以上)
2929
* Windows: Qt Creator + mingw
3030
* gnu make
31-
* g++ 4.6 (またはそれ以上)
31+
* g++ 4.8 (またはそれ以上)
3232
* clang++
3333

3434
### cmake

0 commit comments

Comments
 (0)