File tree 3 files changed +5
-13
lines changed
3 files changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -602,7 +602,7 @@ impl Build {
602
602
/// Get the space-separated set of activated features for the standard
603
603
/// library.
604
604
fn std_features ( & self ) -> String {
605
- let mut features = "panic-unwind asan lsan msan tsan " . to_string ( ) ;
605
+ let mut features = "panic-unwind" . to_string ( ) ;
606
606
607
607
if self . config . debug_jemalloc {
608
608
features. push_str ( " debug-jemalloc" ) ;
Original file line number Diff line number Diff line change @@ -24,22 +24,18 @@ std_unicode = { path = "../libstd_unicode" }
24
24
unwind = { path = " ../libunwind" }
25
25
26
26
[target .x86_64-unknown-linux-gnu .dependencies ]
27
- rustc_asan = { path = " ../librustc_asan" , optional = true }
28
- rustc_lsan = { path = " ../librustc_lsan" , optional = true }
29
- rustc_msan = { path = " ../librustc_msan" , optional = true }
30
- rustc_tsan = { path = " ../librustc_tsan" , optional = true }
27
+ rustc_asan = { path = " ../librustc_asan" }
28
+ rustc_lsan = { path = " ../librustc_lsan" }
29
+ rustc_msan = { path = " ../librustc_msan" }
30
+ rustc_tsan = { path = " ../librustc_tsan" }
31
31
32
32
[build-dependencies ]
33
33
build_helper = { path = " ../build_helper" }
34
34
gcc = " 0.3.27"
35
35
36
36
[features ]
37
- asan = [" rustc_asan" ]
38
37
backtrace = []
39
38
debug-jemalloc = [" alloc_jemalloc/debug" ]
40
39
jemalloc = [" alloc_jemalloc" ]
41
40
force_alloc_system = []
42
- lsan = [" rustc_lsan" ]
43
- msan = [" rustc_msan" ]
44
41
panic-unwind = [" panic_unwind" ]
45
- tsan = [" rustc_tsan" ]
Original file line number Diff line number Diff line change @@ -35,12 +35,8 @@ core = { path = "../../libcore" }
35
35
36
36
# Reexport features from std
37
37
[features ]
38
- asan = [" std/asan" ]
39
38
backtrace = [" std/backtrace" ]
40
39
debug-jemalloc = [" std/debug-jemalloc" ]
41
40
jemalloc = [" std/jemalloc" ]
42
41
force_alloc_system = [" std/force_alloc_system" ]
43
- lsan = [" std/lsan" ]
44
- msan = [" std/msan" ]
45
42
panic-unwind = [" std/panic-unwind" ]
46
- tsan = [" std/tsan" ]
You can’t perform that action at this time.
0 commit comments