mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
Set minimum supported version of GCC to 8.x
And update the documentation accordingly
This commit is contained in:
parent
d361eedbec
commit
b3513cd7fa
4 changed files with 124 additions and 84 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue