Skip to content

Commit

Permalink
Add riscv32 support
Browse files Browse the repository at this point in the history
Add missing definitions for the RISC-V 32-bit architecture.

Signed-off-by: Khem Raj <[email protected]>
  • Loading branch information
kraj authored and bluca committed Jan 16, 2025
1 parent 8ab9680 commit fb23645
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ SET_ARCH(IA32, i*86*)
SET_ARCH(MIPS, mips*)
SET_ARCH(AARCH64, aarch64*)
SET_ARCH(RISCV64, riscv64*)
SET_ARCH(RISCV32, riscv32*)

AC_CHECK_SIZEOF(pid_t)
AC_CHECK_SIZEOF(uid_t)
Expand Down
4 changes: 4 additions & 0 deletions src/architecture.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ enum {
ARCHITECTURE_TILEGX,
ARCHITECTURE_CRIS,
ARCHITECTURE_RISCV64,
ARCHITECTURE_RISCV32,
ARCHITECTURE_LOONGARCH,
_ARCHITECTURE_MAX,
_ARCHITECTURE_INVALID = -1
Expand Down Expand Up @@ -151,6 +152,9 @@ int uname_architecture(void);
#elif defined(__riscv) && __riscv_xlen == 64
# define native_architecture() ARCHITECTURE_RISCV64
# define define LIB_ARCH_TUPLE "riscv64-linux-gnu"
#elif defined(__riscv) && __riscv_xlen == 32
# define native_architecture() ARCHITECTURE_RISCV32
# define define LIB_ARCH_TUPLE "riscv32-linux-gnu"
#elif defined(__loongarch__) && __loongarch_grlen == 64
# define native_architecture() ARCHITECTURE_LOONGARCH
# define define LIB_ARCH_TUPLE "loongarch64-linux-gnu"
Expand Down

0 comments on commit fb23645

Please sign in to comment.