-
Notifications
You must be signed in to change notification settings - Fork 35
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
Building fails with: error[E0557]: feature has been removed #106
Comments
Any news? This caught me as well. |
I could move two step further. I changed the panic-semihostic dependency version to But then there is a failure on:
You can disable it by commenting But at this step there is a error with the linker:
I tested with both stable and nighlty. |
Got it running by modifying
I also add the following line to
This configuration might be unsafe. Also, do not forget to install |
Some other examples still won't compile. I guess this crate needs to be refactored to use the updated version of the hall. Any plans? |
relevant output of trying to run cargo build --example hello:
error[E0557]: feature has been removed
--> /home/frederik/.cargo/registry/src/github.com-1ecc6299db9ec823/panic-semihosting-0.3.0/src/lib.rs:59:12
|
59 | #![feature(panic_implementation)]
| ^^^^^^^^^^^^^^^^^^^^
|
note: subsumed by
#[panic_handler]
--> /home/frederik/.cargo/registry/src/github.com-1ecc6299db9ec823/panic-semihosting-0.3.0/src/lib.rs:59:12
|
59 | #![feature(panic_implementation)]
| ^^^^^^^^^^^^^^^^^^^^
error[E0658]: The attribute
panic_implementation
is currently unknown to the compiler and may have meaning added to it in the future (see issue #29642)--> /home/frederik/.cargo/registry/src/github.com-1ecc6299db9ec823/panic-semihosting-0.3.0/src/lib.rs:71:3
|
71 | #[panic_implementation]
| ^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(custom_attribute)] to the crate attributes to enable
The text was updated successfully, but these errors were encountered: