My working unpac space for OCaml projects in development
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add RISC-V 64-bit architecture detection

+1
+1
vendor/git/zstd-c/programs/platform.h
··· 35 35 || defined __x86_64__ || defined _M_X64 /* x86 64-bit */ \ 36 36 || defined __arm64__ || defined __aarch64__ || defined __ARM64_ARCH_8__ /* ARM 64-bit */ \ 37 37 || (defined __mips && (__mips == 64 || __mips == 4 || __mips == 3)) /* MIPS 64-bit */ \ 38 + || (defined(__riscv) && __riscv_xlen == 64) /* RISC-V 64-bit */ \ 38 39 || defined _LP64 || defined __LP64__ /* NetBSD, OpenBSD */ || defined __64BIT__ /* AIX */ || defined _ADDR64 /* Cray */ \ 39 40 || (defined __SIZEOF_POINTER__ && __SIZEOF_POINTER__ == 8) /* gcc */ 40 41 # if !defined(__64BIT__)