about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2019-01-24 18:02:54 -0800
committerJosh Stone <jistone@redhat.com>2019-01-25 15:39:55 -0800
commit15cf179c9316740fb5ddff3bf8075e5436cece11 (patch)
tree3b70509f39e8f63504dd2de1df29f6a18975cdde /src/bootstrap
parenta920ed935c60faf851415bfdc636a6288dd29c49 (diff)
downloadrust-15cf179c9316740fb5ddff3bf8075e5436cece11.tar.gz
rust-15cf179c9316740fb5ddff3bf8075e5436cece11.zip
Set LLDB_NO_DEBUGSERVER=ON
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/native.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs
index 337c6965a30..b1bc2e6cad5 100644
--- a/src/bootstrap/native.rs
+++ b/src/bootstrap/native.rs
@@ -195,6 +195,7 @@ impl Step for Llvm {
             cfg.define("LLVM_ENABLE_PROJECTS", "clang;lldb");
             // For the time being, disable code signing.
             cfg.define("LLDB_CODESIGN_IDENTITY", "");
+            cfg.define("LLDB_NO_DEBUGSERVER", "ON");
         } else {
             // LLDB requires libxml2; but otherwise we want it to be disabled.
             // See https://github.com/rust-lang/rust/pull/50104