aboutsummaryrefslogtreecommitdiff
path: root/cmake/compiler
diff options
context:
space:
mode:
authorGiacomo Pozzoni <giacomopoz@gmail.com>2020-08-21 13:51:29 +0200
committerGitHub <noreply@github.com>2020-08-21 13:51:29 +0200
commit41d70a5905c152d26217cc152a1748c337cfd81e (patch)
treeb8cc101a2b38ac8c9e5b3ef293f93aefaa355d7d /cmake/compiler
parentd717b9dc3e0a25fc0c6f7d55e08740e295697c67 (diff)
Build/GCC: Raise required version to 8.3.0 (#25297)
Even when building with Clang, make sure to have libstdc++ >= 8
Diffstat (limited to 'cmake/compiler')
-rw-r--r--cmake/compiler/gcc/settings.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/compiler/gcc/settings.cmake b/cmake/compiler/gcc/settings.cmake
index 92f1b81f0a4..f41fa23a851 100644
--- a/cmake/compiler/gcc/settings.cmake
+++ b/cmake/compiler/gcc/settings.cmake
@@ -3,7 +3,7 @@ target_compile_definitions(trinity-compile-option-interface
INTERFACE
-D_BUILD_DIRECTIVE="$<CONFIG>")
-set(GCC_EXPECTED_VERSION 7.1.0)
+set(GCC_EXPECTED_VERSION 8.3.0)
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS GCC_EXPECTED_VERSION)
message(FATAL_ERROR "GCC: TrinityCore requires version ${GCC_EXPECTED_VERSION} to build but found ${CMAKE_CXX_COMPILER_VERSION}")