Set minimum supported version of GCC to 8.x

And update the documentation accordingly
This commit is contained in:
scribam 2019-06-10 21:52:07 +02:00 committed by Ivan
parent d361eedbec
commit b3513cd7fa
4 changed files with 124 additions and 84 deletions

View file

@ -1,9 +1,9 @@
# Check and configure compiler options for RPCS3
if(CMAKE_COMPILER_IS_GNUCXX)
# GCC 7.3 or latter is required
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.3)
message(FATAL_ERROR "RPCS3 requires at least gcc-7.3.")
# GCC 8.1 or latter is required
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8)
message(FATAL_ERROR "RPCS3 requires at least gcc-8.")
endif()
# Set compiler options here