We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I did a little bit of triage on the recent WASM build failures. I don't have a fix, but the cause seems to be this:
rust-lang/cc-rs#1284
Seems to have happened because:
cc
rust-bindgen
1.0
1.2.0
-fno-exception
So the CI is pulling in cc 1.2.0, which is using that flag and failing on the z3 build.
cc 1.2.0
z3
The text was updated successfully, but these errors were encountered:
Adding an explicit dependence on cc 1.1 in z3_sys as follows seems to fix it:
1.1
z3_sys
cc = "~1.1"
Sorry, something went wrong.
I've made #329 with this change.
No branches or pull requests
I did a little bit of triage on the recent WASM build failures. I don't have a fix, but the cause seems to be this:
rust-lang/cc-rs#1284
Seems to have happened because:
cc
.rust-bindgen
, which is what is actually usingcc
just targets the major version1.0
.cc
1.2.0
changed the flags passed to wasm targets, adding in-fno-exception
So the CI is pulling in
cc 1.2.0
, which is using that flag and failing on thez3
build.The text was updated successfully, but these errors were encountered: