Просмотр исходного кода

build: remove -fconcepts

It was needed on GCC versions not supporting `-std=c++20`, but GCC 10 and newer (required to compile yuzu) don't need it anymore
Andrea Pappacoda 4 лет назад
Родитель
Сommit
ce859cf526
1 измененных файлов с 0 добавлено и 6 удалено
  1. 0 6
      src/CMakeLists.txt

+ 0 - 6
src/CMakeLists.txt

@@ -103,12 +103,6 @@ else()
         -Wno-unused-parameter
         -Wno-unused-parameter
     )
     )
 
 
-    # TODO: Remove when we update to a GCC compiler that enables this
-    #       by default (i.e. GCC 10 or newer).
-    if (CMAKE_CXX_COMPILER_ID STREQUAL GNU)
-        add_compile_options(-fconcepts)
-    endif()
-
     if (ARCHITECTURE_x86_64)
     if (ARCHITECTURE_x86_64)
         add_compile_options("-mcx16")
         add_compile_options("-mcx16")
     endif()
     endif()