-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Fix build on i686-apple-darwin systems #95375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
r? @m-ou-se (rust-highfive has picked a reviewer for you, use r? to override) |
Replace `target_arch = "x86_64"` with `not(target_arch = "aarch64")` so that i686-apple-darwin systems dynamically choose implementation.
On 32-bit systems, fdopendir is called `_fdopendir$INODE64$UNIX2003`. On 64-bit systems, fdopendir is called `_fdopendir$INODE64`.
137ebeb
to
8c18844
Compare
Thanks! @bors r+ |
📌 Commit 8c18844 has been approved by |
☀️ Test successful - checks-actions |
Finished benchmarking commit (e2301ca): comparison url. Summary: This benchmark run did not return any relevant results. 4 results were found to be statistically significant but too small to be relevant. If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression |
Replace
target_arch = "x86_64"
withnot(target_arch = "aarch64")
so that i686-apple-darwin systems dynamically choose implementation.