lib/systems: Add rustc config for aarch64-embedded

The target aarch64-none-elf is not a valid rustc target, use
aarch64-unknown-none instead.
This commit is contained in:
Jared Baur 2023-08-03 23:32:04 -07:00
parent 3b4a2c7edd
commit aca7042069
No known key found for this signature in database

View file

@ -206,6 +206,7 @@ rec {
aarch64-embedded = {
config = "aarch64-none-elf";
libc = "newlib";
rustc.config = "aarch64-unknown-none";
};
aarch64be-embedded = {