[clang] [llvm] [llvm-objcopy][libObject] Add RISC-V big-endian support (PR #146913)
Djordje Todorovic via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 4 02:57:46 PDT 2025
================
@@ -74,8 +74,10 @@ class Triple {
ppc64le, // PPC64LE: powerpc64le
r600, // R600: AMD GPUs HD2XXX - HD6XXX
amdgcn, // AMDGCN: AMD GCN GPUs
- riscv32, // RISC-V (32-bit): riscv32
- riscv64, // RISC-V (64-bit): riscv64
+ riscv32, // RISC-V (32-bit, little endian): riscv32
+ riscv64, // RISC-V (64-bit, little endian): riscv64
+ riscv32be, // RISC-V (32-bit, big endian): riscv32be
+ riscv64be, // RISC-V (64-bit, big endian): riscv64be
----------------
djtodoro wrote:
Strange...
https://github.com/llvm/llvm-project/pull/146913
More information about the llvm-commits
mailing list