riscv32-zephyr-elf don't support it anymore? #624
-
|
Beta Was this translation helpful? Give feedback.
Answered by
keith-packard
Feb 6, 2023
Replies: 1 comment 1 reply
-
32-bit risc-v uses the same toolchain as 64-bit risc-v. It's called riscv64-zephyr-elf because that toolchain builds for 64-bit targets by default. You specify
builds for a typical 32-bit integer-only target. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
stephanosio
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
32-bit risc-v uses the same toolchain as 64-bit risc-v. It's called riscv64-zephyr-elf because that toolchain builds for 64-bit targets by default. You specify
-march=
and-mabi=
flags to tell the tools which architecture you're using:builds for a typical 32-bit integer-only target.