Merge pull request #1948 from Liamolucko/riscv-triples

Add missing 32-bit variants of RISC-V target triples
This commit is contained in:
enjoy-digital 2024-05-07 15:15:09 +02:00 committed by GitHub
commit 0d3a8220dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -79,9 +79,13 @@ CPU_GCC_TRIPLE_RISCV64 = (
)
CPU_GCC_TRIPLE_RISCV32 = CPU_GCC_TRIPLE_RISCV64 + (
"riscv32-pc-linux-musl",
"riscv32-unknown-elf",
"riscv32-unknown-linux-gnu",
"riscv32-elf",
"riscv32-linux",
"riscv32-linux-gnu",
"riscv32-none-elf",
"riscv-none-embed",
"riscv-none-elf",
)