diff options
| author | 12101111 <w12101111@gmail.com> | 2021-04-09 23:22:17 +0800 |
|---|---|---|
| committer | 12101111 <w12101111@gmail.com> | 2021-04-09 23:22:17 +0800 |
| commit | 7cd0a4d352198779f015fc04f48900f5e20c5278 (patch) | |
| tree | 569041d83523786c8e71c41854f44f455211d836 /src/bootstrap/native.rs | |
| parent | bc66b92f7f1114a78b98504a927ca9c0aa12c71a (diff) | |
| download | rust-7cd0a4d352198779f015fc04f48900f5e20c5278.tar.gz rust-7cd0a4d352198779f015fc04f48900f5e20c5278.zip | |
Enable sanitizers for x86_64-unknown-linux-musl
Diffstat (limited to 'src/bootstrap/native.rs')
| -rw-r--r-- | src/bootstrap/native.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs index c06ceb80c6a..bde0a96f030 100644 --- a/src/bootstrap/native.rs +++ b/src/bootstrap/native.rs @@ -814,6 +814,9 @@ fn supported_sanitizers( "x86_64-unknown-linux-gnu" => { common_libs("linux", "x86_64", &["asan", "lsan", "msan", "tsan"]) } + "x86_64-unknown-linux-musl" => { + common_libs("linux", "x86_64", &["asan", "lsan", "msan", "tsan"]) + } _ => Vec::new(), } } |
