From 15cf179c9316740fb5ddff3bf8075e5436cece11 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 24 Jan 2019 18:02:54 -0800 Subject: [PATCH] Set LLDB_NO_DEBUGSERVER=ON --- src/bootstrap/native.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs index 337c6965a30c..b1bc2e6cad5b 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