We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58bab99 + 099d324 commit 6509a2fCopy full SHA for 6509a2f
cmake/FindDPCPP.cmake
@@ -7,6 +7,12 @@ else()
7
# Remove /machine: option which is not supported by clang-cl
8
string(REPLACE "/machine:x64" "" CMAKE_EXE_LINKER_FLAGS
9
"${CMAKE_EXE_LINKER_FLAGS}")
10
+ # Remove /debug: option which is not supported by clang-cl
11
+ string(REPLACE "/debug" "" CMAKE_EXE_LINKER_FLAGS_DEBUG
12
+ "${CMAKE_EXE_LINKER_FLAGS_DEBUG}")
13
+ # Remove /INCREMENTAL: option which is not supported by clang-cl
14
+ string(REPLACE "/INCREMENTAL" "" CMAKE_EXE_LINKER_FLAGS_DEBUG
15
16
# Remove /subsystem option which is not supported by clang-cl
17
string(REPLACE "/subsystem:console" "" CMAKE_CREATE_CONSOLE_EXE
18
"${CMAKE_CREATE_CONSOLE_EXE}")
0 commit comments