mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
ci: Fix clang linux failure
This commit is contained in:
parent
d19d0cb70d
commit
939479f55e
1 changed files with 2 additions and 2 deletions
|
@ -119,8 +119,8 @@ else()
|
|||
endif()
|
||||
endif()
|
||||
|
||||
# Specify C++ library to use as standard C++ when using clang
|
||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
||||
# Specify C++ library to use as standard C++ when using clang (not required on linux due to GNU)
|
||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND (APPLE OR WIN32))
|
||||
add_compile_options(-stdlib=libc++)
|
||||
endif()
|
||||
endif()
|
||||
|
|
Loading…
Add table
Reference in a new issue