File tree 6 files changed +9
-9
lines changed
6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -613,7 +613,7 @@ impl Build {
613
613
/// Get the space-separated set of activated features for the standard
614
614
/// library.
615
615
fn std_features ( & self ) -> String {
616
- let mut features = "panic-unwind asan lsan msan tsan " . to_string ( ) ;
616
+ let mut features = "panic-unwind" . to_string ( ) ;
617
617
618
618
if self . config . debug_jemalloc {
619
619
features. push_str ( " debug-jemalloc" ) ;
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ version = "0.0.0"
7
7
[lib ]
8
8
name = " rustc_asan"
9
9
path = " lib.rs"
10
+ test = false
10
11
11
12
[build-dependencies ]
12
13
build_helper = { path = " ../build_helper" }
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ version = "0.0.0"
7
7
[lib ]
8
8
name = " rustc_lsan"
9
9
path = " lib.rs"
10
+ test = false
10
11
11
12
[build-dependencies ]
12
13
build_helper = { path = " ../build_helper" }
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ version = "0.0.0"
7
7
[lib ]
8
8
name = " rustc_msan"
9
9
path = " lib.rs"
10
+ test = false
10
11
11
12
[build-dependencies ]
12
13
build_helper = { path = " ../build_helper" }
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ version = "0.0.0"
7
7
[lib ]
8
8
name = " rustc_tsan"
9
9
path = " lib.rs"
10
+ test = false
10
11
11
12
[build-dependencies ]
12
13
build_helper = { path = " ../build_helper" }
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" ]
You can’t perform that action at this time.
0 commit comments