summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Riley <colin@codeplay.com>2015-04-17 11:20:30 +0000
committerColin Riley <colin@codeplay.com>2015-04-17 11:20:30 +0000
commit0e82028afe288a1f57cb6b7f9565ec821bec2b96 (patch)
tree407f94967507d1f2cb67f45440df7679391cca74
parent97fbdd5a39cf2a3298b8ac0d4ebb07e7bffd5fef (diff)
downloadbcm5719-llvm-0e82028afe288a1f57cb6b7f9565ec821bec2b96.tar.gz
bcm5719-llvm-0e82028afe288a1f57cb6b7f9565ec821bec2b96.zip
Fix cmake build on osx after r235109
llvm-svn: 235179
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt b/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt
index 769b71e206d..90278a7c9ce 100644
--- a/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt
+++ b/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt
@@ -1,5 +1,9 @@
set(LLVM_NO_RTTI 1)
+if (CMAKE_SYSTEM_NAME MATCHES "Darwin")
+ include_directories(${LIBXML2_INCLUDE_DIR})
+endif()
+
add_lldb_library(lldbPluginProcessGDBRemote
GDBRemoteCommunication.cpp
GDBRemoteCommunicationClient.cpp
OpenPOWER on IntegriCloud