You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The standard library recently gained a windows_raw_dylib feature that enables building rust programs without any Windows SDK import libraries (though it still needs C/C++ runtime stuff). However, backtrace doesn't yet support this so at least kernel32 is still required.
I don't have time to work on this atm but if anyone wants to then seeing how the standard library does it might help. Note that std using the unstable macro (instead of macro_rules) so that would likely need to be different in backtrace-rs unless gating on backtrace_in_libstd.
The text was updated successfully, but these errors were encountered:
The standard library recently gained a
windows_raw_dylib
feature that enables building rust programs without any Windows SDK import libraries (though it still needs C/C++ runtime stuff). However, backtrace doesn't yet support this so at least kernel32 is still required.I don't have time to work on this atm but if anyone wants to then seeing how the standard library does it might help. Note that std using the unstable
macro
(instead ofmacro_rules
) so that would likely need to be different in backtrace-rs unless gating onbacktrace_in_libstd
.The text was updated successfully, but these errors were encountered: