diff options
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1bdf70b76..9182dbfd4 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt | |||
| @@ -65,12 +65,14 @@ if (MSVC) | |||
| 65 | /we4305 # 'context': truncation from 'type1' to 'type2' | 65 | /we4305 # 'context': truncation from 'type1' to 'type2' |
| 66 | /we4388 # 'expression': signed/unsigned mismatch | 66 | /we4388 # 'expression': signed/unsigned mismatch |
| 67 | /we4389 # 'operator': signed/unsigned mismatch | 67 | /we4389 # 'operator': signed/unsigned mismatch |
| 68 | /we4505 # 'function': unreferenced local function has been removed | ||
| 68 | /we4547 # 'operator': operator before comma has no effect; expected operator with side-effect | 69 | /we4547 # 'operator': operator before comma has no effect; expected operator with side-effect |
| 69 | /we4549 # 'operator1': operator before comma has no effect; did you intend 'operator2'? | 70 | /we4549 # 'operator1': operator before comma has no effect; did you intend 'operator2'? |
| 70 | /we4555 # Expression has no effect; expected expression with side-effect | 71 | /we4555 # Expression has no effect; expected expression with side-effect |
| 71 | /we4715 # 'function': not all control paths return a value | 72 | /we4715 # 'function': not all control paths return a value |
| 72 | /we4834 # Discarding return value of function with 'nodiscard' attribute | 73 | /we4834 # Discarding return value of function with 'nodiscard' attribute |
| 73 | /we5038 # data member 'member1' will be initialized after data member 'member2' | 74 | /we5038 # data member 'member1' will be initialized after data member 'member2' |
| 75 | /we5245 # 'function': unreferenced function with internal linkage has been removed | ||
| 74 | ) | 76 | ) |
| 75 | 77 | ||
| 76 | if (ARCHITECTURE_x86_64) | 78 | if (ARCHITECTURE_x86_64) |
| @@ -103,12 +105,6 @@ else() | |||
| 103 | -Wno-unused-parameter | 105 | -Wno-unused-parameter |
| 104 | ) | 106 | ) |
| 105 | 107 | ||
| 106 | # TODO: Remove when we update to a GCC compiler that enables this | ||
| 107 | # by default (i.e. GCC 10 or newer). | ||
| 108 | if (CMAKE_CXX_COMPILER_ID STREQUAL GNU) | ||
| 109 | add_compile_options(-fconcepts) | ||
| 110 | endif() | ||
| 111 | |||
| 112 | if (ARCHITECTURE_x86_64) | 108 | if (ARCHITECTURE_x86_64) |
| 113 | add_compile_options("-mcx16") | 109 | add_compile_options("-mcx16") |
| 114 | endif() | 110 | endif() |