You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the support for catalyst upstream in rustc_target is kind of broken here, we should figure out a fix there before doing too much here...
... That said, I've merged #727 in the meantime, since it seems like a reasonable approach that we wouldn't be upset about no matter how we resolve that.
Activity
kgrech commentedon Oct 10, 2022
I've found a simple solution, see PR #727, but I have some concerns. I've outlined them in the PR and would be happy to discuss it there
thomcc commentedon Oct 26, 2022
I think the support for catalyst upstream in rustc_target is kind of broken here, we should figure out a fix there before doing too much here...
... That said, I've merged #727 in the meantime, since it seems like a reasonable approach that we wouldn't be upset about no matter how we resolve that.
imWildCat commentedon Jan 16, 2023
@thomcc @kgrech I created another PR to fix in the rust compiler: rust-lang/rust#106925
madsmtm commentedon Apr 30, 2024
All of the mentioned PRs have been merged, so I believe this can be closed.
NobodyXu commentedon May 1, 2024
I tried
cargo +nightly build -Z build-std --release --target aarch64-apple-ios-macabi
and it still failed:NobodyXu commentedon May 1, 2024
It seems like a different error this time due to
-Werror
:NobodyXu commentedon May 1, 2024
Turns out that
ring
enables-Werror
if.git
is present.After disabling it, I can compile ring on these targets.
Closing this as completed.