-
Notifications
You must be signed in to change notification settings - Fork 252
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
Disable libunwind for RTEMS OS #665
Conversation
Your target is panic-abort, why does it even need this? |
I'm not opposed to merging, I'm just confused, I wouldn't think this changes anything. |
True, it's weird. Let me check again. |
Ok. So the compiler itself builds fine. However, when I build my simple hello_world application for the target with
|
Huh. Something feels off here, but for now, merging this is okay! |
In rust-lang/rust#127021 we added target support for RTEMS OS.
It has a POSIX interface, so we could reuse much of the
unix
backend, but currently libunwind is not supported.Add a
cfg
switch to disable libunwind for RTEMS.