diff options
author | Alexandru Ardelean <ardeleanalex@gmail.com> | 2022-06-02 14:27:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-02 14:27:37 +0300 |
commit | 49dbf87f1f0d56c20c1f026402699ffdb5cc31d5 (patch) | |
tree | b12b7fadc9c22138a1a52a797ba7b3fff5007ac1 | |
parent | 17d7efe7e74f04415f17a96de156bed4964ff0c2 (diff) | |
parent | 631cb5309d1d078dfb8eba3e0e83318ceca6f067 (diff) |
Merge pull request #18669 from wigyori/openblas-riscv
openblas: compile with RISCV64_GENERIC target on riscv64 arch
-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),) |