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 4e26cf2 commit e8af4fdCopy full SHA for e8af4fd
lldb/cmake/modules/LLDBGenerateConfig.cmake
@@ -24,7 +24,11 @@ check_library_exists(compression compression_encode_buffer "" HAVE_LIBCOMPRESSIO
24
# so that the check isn't duplicated, but we translate them into the LLDB names
25
# so that I don't have to change all the uses at the moment.
26
set(LLDB_ENABLE_TERMIOS ${HAVE_TERMIOS_H})
27
-set(LLDB_ENABLE_POSIX NOT UNIX)
+if (UNIX)
28
+ set(LLDB_ENABLE_POSIX ON)
29
+else()
30
+ set(LLDB_ENABLE_POSIX OFF)
31
+endif()
32
33
if(NOT LLDB_CONFIG_HEADER_INPUT)
34
set(LLDB_CONFIG_HEADER_INPUT ${LLDB_INCLUDE_ROOT}/lldb/Host/Config.h.cmake)
0 commit comments