diff options
author | Zoltan HERPAI <wigyori@uid0.hu> | 2022-05-23 23:25:55 +0200 |
---|---|---|
committer | Zoltan HERPAI <wigyori@uid0.hu> | 2022-05-31 11:30:21 +0200 |
commit | 631cb5309d1d078dfb8eba3e0e83318ceca6f067 (patch) | |
tree | 5a9d7f38dddbd9f173890a1dbf3084bbd266e7ad /libs/openblas | |
parent | 510d44d988282abef81011b7281591b1bca88c90 (diff) |
libs: openblas: compile with RISCV64_GENERIC target on riscv64 arch
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
Diffstat (limited to 'libs/openblas')
-rw-r--r-- | libs/openblas/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/openblas/Makefile b/libs/openblas/Makefile index 153de54a4..0b352d9d1 100644 --- a/libs/openblas/Makefile +++ b/libs/openblas/Makefile @@ -63,6 +63,8 @@ else ifeq ($(ARCH),mipsel) OPENBLAS_TARGET:=MIPS24K else ifeq ($(ARCH),powerpc) OPENBLAS_TARGET:=PPC440 +else ifeq ($(ARCH),riscv64) + OPENBLAS_TARGET:=RISCV64_GENERIC endif endif # ifeq ($(OPENBLAS_TARGET),) |