-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
libstd build without backtrace feature broken #64410
Comments
@alexcrichton is it expected that building libstd without explicitly also enabling the |
Nah I think this is just a bug. We don't happen to test it on CI so I wasn't able to fix it myself :( I'd be more than happy to review a PR to fix this support though! |
Well, given that backtrace functionality is now publicly exposed, what should it do when the backtrace feature is disabled? Would it be ok to just print "backtraces not supported" or so?
|
Yep, there's already handling for that case: https://github.com/rust-lang/rust/blob/master/src/libstd/backtrace.rs#L119 |
I am working on a fix at #64444. |
temporarily enable backtrace feature This is a temporary hack to work around rust-lang/rust#64410.
Likely because of #64154.
The text was updated successfully, but these errors were encountered: