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
As of today, when compiling for my custom aarch64 target, I get the following error spews that were not there previously:
Compiling volatile-register v0.2.0
'+fp' is not a recognized feature for this target (ignoring feature)
'+fp' is not a recognized feature for this target (ignoring feature)
I am unsure where this is injected. If I try to explicitly turn it off, I get the same error spew, so this feature seems to not exist at all:
Compiling volatile-register v0.2.0
'-fp' is not a recognized feature for this target (ignoring feature)
'-fp' is not a recognized feature for this target (ignoring feature)
'+fp' is not a recognized feature for this target (ignoring feature)
The text was updated successfully, but these errors were encountered:
Fix "fp" target feature for AArch64
This fixes the following warning on AArch64:
```
'+fp' is not a recognized feature for this target (ignoring feature)
```
Fixesrust-lang#49782
As of today, when compiling for my custom aarch64 target, I get the following error spews that were not there previously:
Example project here: https://github.com/andre-richter/rust-raspi3-tutorial/tree/master/05_uart0
I am unsure where this is injected. If I try to explicitly turn it off, I get the same error spew, so this feature seems to not exist at all:
The text was updated successfully, but these errors were encountered: