diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-07-12 22:14:50 +0200 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-07-12 22:18:55 +0200 |
commit | ab9604d86f0fe40538491e57cf2032f213d7bf8e (patch) | |
tree | 6997158eb3deed0148edd0ecb8509029b25780d4 | |
parent | 74c691470c57f447e3c1c118c4a4ee4bc366f2ff (diff) | |
download | xmr-stak-ab9604d86f0fe40538491e57cf2032f213d7bf8e.zip xmr-stak-ab9604d86f0fe40538491e57cf2032f213d7bf8e.tar.gz |
CMake: change GCC to g++ warning
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2391a0b..738256e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ list(APPEND CMAKE_PREFIX_PATH "$ENV{CMAKE_PREFIX_PATH}") # a high rate of wrong shares. if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.1) - message(FATAL_ERROR "GCC version must be at least 5.1!") + message(FATAL_ERROR "g++ version must be at least 5.1!") endif() endif() @@ -66,7 +66,7 @@ xXl2Nm/u3cPP/eQVrZz5H8eACwIv+LL1EV+9uLanWUa+IO5hHr3KElvKNKD6vN0= make install ``` -- GCC version 5.1 or higher is required for full C++11 support. CMake release compile scripts, as well as CodeBlocks build environment for debug builds is included. +- g++ version 5.1 or higher is required for full C++11 support. CMake release compile scripts, as well as CodeBlocks build environment for debug builds is included. ### To do a static build for a system without gcc 5.1+ ``` |