Skip to content
This repository was archived by the owner on Apr 2, 2020. It is now read-only.

Commit daa19f2

Browse files
author
Todd Fiala
committed
disable lldb-mi until upstream issue with global constructor is resolved
1 parent ac64d3e commit daa19f2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ endif()
55
add_subdirectory(argdumper)
66
add_subdirectory(driver)
77
if (NOT __ANDROID_NDK__)
8-
add_subdirectory(lldb-mi)
8+
# Skip building lldb-mi on Linux until the following bug is resolved upstream:
9+
# https://llvm.org/bugs/show_bug.cgi?id=30822
10+
if (NOT CMAKE_SYSTEM_NAME MATCHES "Linux")
11+
add_subdirectory(lldb-mi)
12+
endif()
913
endif()
1014
if (LLDB_CAN_USE_LLDB_SERVER)
1115
add_subdirectory(lldb-server)

0 commit comments

Comments
 (0)