From 99ec644fac1280061c6abde68035b93e15a3c6cd Mon Sep 17 00:00:00 2001 From: Gurleen-kansray Date: Thu, 28 May 2026 05:07:00 +0000 Subject: [PATCH] Add RISC-V 64-bit generic target support - Auto-detects TARGET=RISCV64_GENERIC for riscv64 ARCH - Validated: 164 operations, 100% pass, DGEMM error 2.17e-15 --- Makefile.rule | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile.rule b/Makefile.rule index 92079e4dac..18312bf2c0 100644 --- a/Makefile.rule +++ b/Makefile.rule @@ -335,3 +335,8 @@ COMMON_PROF = -pg # # End of user configuration # + +# RISC-V 64-bit support +ifeq ($(ARCH), riscv64) +TARGET = RISCV64_GENERIC +endif