about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2017-02-15 17:00:41 -0500
committerJorge Aparicio <japaricious@gmail.com>2017-03-05 14:25:47 -0500
commit872a0ebf2170c8b3e8ac665c41270e83cb9105ce (patch)
treef6b550283ed5d99eb724ca8616401d57a26c4ca1 /src/bootstrap
parentba07bd5d23aced6d4baa5696213b11ca832c1a5d (diff)
downloadrust-872a0ebf2170c8b3e8ac665c41270e83cb9105ce.tar.gz
rust-872a0ebf2170c8b3e8ac665c41270e83cb9105ce.zip
cleanup: remove the *san Cargo features from std
these belong to a previous iteration of the sanitizer implementation
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs
index 98b68d870d3..071d0b0b090 100644
--- a/src/bootstrap/lib.rs
+++ b/src/bootstrap/lib.rs
@@ -613,7 +613,7 @@ impl Build {
     /// Get the space-separated set of activated features for the standard
     /// library.
     fn std_features(&self) -> String {
-        let mut features = "panic-unwind asan lsan msan tsan".to_string();
+        let mut features = "panic-unwind".to_string();
 
         if self.config.debug_jemalloc {
             features.push_str(" debug-jemalloc");