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.
1 parent cb4433b commit 3b3465dCopy full SHA for 3b3465d
libcxxabi/CMakeLists.txt
@@ -34,6 +34,11 @@ MACRO_ENSURE_OUT_OF_SOURCE_BUILD(
34
build directory and run 'cmake /path/to/${PROJECT_NAME} [options]' there."
35
)
36
37
+if (MSVC)
38
+ message(FATAL_ERROR "Libc++abi can't be built for MSVC targets, and doing so is pointless anyway because such "
39
+ "targets must use the MS C++ ABI, and libc++abi provides the Itanium C++ ABI.")
40
+endif()
41
+
42
#===============================================================================
43
# Setup CMake Options
44
0 commit comments