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
Trying to build for arm-none-eabi as though it had a pointer width of 64 bits causes an "error: could not compile core" with no further elaboration, and rebuilding with --verbose reveals that rustc segfaults.
Changing the llvm target to "aarch64-none-elf" and the arch to "aarch64", or changing the target file to claim that pointers are 32-bit, will fix the segfault.
I'm actually not sure if this is a rustc bug or a xargo bug, as I lack the knowledge to do this with rustc without xargo -- sorry if this is in the wrong place!
The text was updated successfully, but these errors were encountered:
Trying to build for
arm-none-eabi
as though it had a pointer width of 64 bits causes an "error: could not compilecore
" with no further elaboration, and rebuilding with--verbose
reveals that rustc segfaults.To reproduce:
Changing the llvm target to "aarch64-none-elf" and the arch to "aarch64", or changing the target file to claim that pointers are 32-bit, will fix the segfault.
I'm actually not sure if this is a rustc bug or a xargo bug, as I lack the knowledge to do this with rustc without xargo -- sorry if this is in the wrong place!
The text was updated successfully, but these errors were encountered: