-
Notifications
You must be signed in to change notification settings - Fork 2
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
Can't build front-end with rust 1.82.0 #1503
Comments
This appears to be due to rust 1.82.0. I can now build after having done:
I'll now poke around and see if anyone else has mentioned this on the web. My guess is it's already been mentioned in a chat room somewhere. |
I haven't yet found a report of anyone else having this problem, but I've tried changing the default back to
|
Looks like this is a known issue. Ugh. |
So, if I want to use rust 1.82, I'll need to figure out how to disable the FWIW, the extended rust 1.82 documentation mentions that
|
FWIW, using |
The Hello World! wasm-bindgen example works with rust 1.81.0 and fails with 1.82.0, and it uses webpack. This gives me a place to report the bug and maybe someone looking at it can find the magic incantation to make it work again. |
I did some more reading and futzing around and now realize that
and
To me, this looks like I'm getting somewhere, but I need another flag somewhere that says not only do we want to build our own copy of I have not yet looked at the source of |
Turns out
That suggests to me that the |
Aha. The cargo So, the upshot is that the release notes for a stable release says that if you want to continue using tools that you've been using in the past, you must use an unstable feature, without explicitly mentioning that this means you can't—by definition—use the version being documented in the release notes. That was counter-intuitive. This strongly suggests that mb2 won't be able to use a stable rust release until they either make it so that |
FWIW, this allows us to build, but we can't really use it because we need debug symbols in case we get a panic and want to see the backtrace:
|
Fixed using
but I also had to do Once a new |
Fix the regression that causes
yarn dev
to fail.I was able to build earlier today. I've since upgraded the sass npm package and done a
cargo update
, but when I back off toorigin/master
the build still fails. My guess is there's a non-Rust artifact that got borked somehow.The text was updated successfully, but these errors were encountered: