mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
[CMake] Fix accidentally swapped input/output parameters of string(REPLACE) for mingw
llvm-svn: 357979
This commit is contained in:
parent
7c89ab3542
commit
5628f415b9
@ -452,7 +452,7 @@ elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE )
|
||||
if (CYGWIN OR MINGW)
|
||||
# MinGW and Cygwin are a bit stricter and lack things like
|
||||
# 'strdup', 'stricmp', etc in c++11 mode.
|
||||
string(REPLACE "c++" "gnu++" "${LLVM_CXX_STD}" gnu_LLVM_CXX_STD)
|
||||
string(REPLACE "c++" "gnu++" gnu_LLVM_CXX_STD "${LLVM_CXX_STD}")
|
||||
append("-std=${gnu_LLVM_CXX_STD}" CMAKE_CXX_FLAGS)
|
||||
else()
|
||||
append("-std=${LLVM_CXX_STD}" CMAKE_CXX_FLAGS)
|
||||
|
Loading…
Reference in New Issue
Block a user