-
-
Notifications
You must be signed in to change notification settings - Fork 904
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
Rust: Remove -Zlink-native-libs=no and bigint flags #5340
Conversation
After updating the rust nightly, we don't need this anymore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Probably we can add rust_flags
to OVERRIDABLE_BUILD_KEYS
, so we can set it in pyproject.toml not in Makefile.envs.
I do kind of like the way that
|
I wonder if it would make sense to keep |
Hmm, maybe in this case, putting the values in Makefile.envs makes sense, as it should affect all packages that build against the new Pyodide versions, which will use wasm-eh. Okay, then I am +1 with this PR. |
Hitting |
We don't need these anymore. link_native_libs=no was fixed by:
rust-lang/libc#4002
and wasm_bigint was fixed by:
rust-lang/rust#131736