Skip to content

Commit

Permalink
Unrolled build for rust-lang#131583
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#131583 - heiher:loong-issue-118053, r=jieyouxu

Setting up indirect access to external data for loongarch64-linux-{musl,ohos}

In issue rust-lang#118053, the `loongarch64-unknown-linux-gnu` target needs indirection to access external data, and so do the `loongarch64-unknown-linux-musl` and `loongarch64-unknown-linux-ohos` targets.
  • Loading branch information
rust-timer authored Oct 17, 2024
2 parents 06d261d + b1579e8 commit 7e77388
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ pub(crate) fn target() -> Target {
| SanitizerSet::LEAK
| SanitizerSet::MEMORY
| SanitizerSet::THREAD,
direct_access_external_data: Some(false),
..base::linux_musl::opts()
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pub(crate) fn target() -> Target {
| SanitizerSet::LEAK
| SanitizerSet::MEMORY
| SanitizerSet::THREAD,
direct_access_external_data: Some(false),
..base::linux_ohos::opts()
},
}
Expand Down

0 comments on commit 7e77388

Please sign in to comment.