Skip to content

Commit fe32d68

Browse files
authored
Fix target abi parsing dor sanitiser targets (#1695)
Ignore msan and tsan fixed #1426 (comment)
1 parent bf119a1 commit fe32d68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/target/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ impl<'a> TargetInfo<'a> {
438438
abi = "elfv2";
439439
}
440440

441-
if abi == "asan" {
441+
if ["asan", "msan", "tsan"].contains(&abi) {
442442
abi = "";
443443
}
444444

0 commit comments

Comments
 (0)