summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python-numpy/files/0001-npy_cpu-Add-riscv-support.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python-numpy/files/0001-npy_cpu-Add-riscv-support.patch')
-rw-r--r--meta/recipes-devtools/python-numpy/files/0001-npy_cpu-Add-riscv-support.patch14
1 files changed, 5 insertions, 9 deletions
diff --git a/meta/recipes-devtools/python-numpy/files/0001-npy_cpu-Add-riscv-support.patch b/meta/recipes-devtools/python-numpy/files/0001-npy_cpu-Add-riscv-support.patch
index 4f5c4f5f0d..4decfe66ee 100644
--- a/meta/recipes-devtools/python-numpy/files/0001-npy_cpu-Add-riscv-support.patch
+++ b/meta/recipes-devtools/python-numpy/files/0001-npy_cpu-Add-riscv-support.patch
@@ -1,21 +1,20 @@
1From 30fb1bf9244bb0789c02ec7c98a923acc7200206 Mon Sep 17 00:00:00 2001 1From 629891f67601275c9c4de0bb01afcf1a8c44fa3f Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 16 Mar 2018 19:55:21 -0700 3Date: Fri, 16 Mar 2018 19:55:21 -0700
4Subject: [PATCH] npy_cpu: Add riscv support 4Subject: [PATCH] npy_cpu: Add riscv support
5 5
6Signed-off-by: Khem Raj <raj.khem@gmail.com> 6Signed-off-by: Khem Raj <raj.khem@gmail.com>
7---
8Upstream-Status: Submitted [https://github.com/numpy/numpy/pull/10761] 7Upstream-Status: Submitted [https://github.com/numpy/numpy/pull/10761]
9 8---
10 numpy/core/include/numpy/npy_cpu.h | 2 ++ 9 numpy/core/include/numpy/npy_cpu.h | 2 ++
11 1 file changed, 2 insertions(+) 10 1 file changed, 2 insertions(+)
12 11
13diff --git a/numpy/core/include/numpy/npy_cpu.h b/numpy/core/include/numpy/npy_cpu.h 12diff --git a/numpy/core/include/numpy/npy_cpu.h b/numpy/core/include/numpy/npy_cpu.h
14index 84653ea18..9e88db873 100644 13index 5edd8f4..e1e4796 100644
15--- a/numpy/core/include/numpy/npy_cpu.h 14--- a/numpy/core/include/numpy/npy_cpu.h
16+++ b/numpy/core/include/numpy/npy_cpu.h 15+++ b/numpy/core/include/numpy/npy_cpu.h
17@@ -78,6 +78,8 @@ 16@@ -96,6 +96,8 @@
18 #define NPY_CPU_AARCH64 17 #define NPY_CPU_OR1K
19 #elif defined(__mc68000__) 18 #elif defined(__mc68000__)
20 #define NPY_CPU_M68K 19 #define NPY_CPU_M68K
21+#elif defined(__riscv) 20+#elif defined(__riscv)
@@ -23,6 +22,3 @@ index 84653ea18..9e88db873 100644
23 #elif defined(__arc__) && defined(__LITTLE_ENDIAN__) 22 #elif defined(__arc__) && defined(__LITTLE_ENDIAN__)
24 #define NPY_CPU_ARCEL 23 #define NPY_CPU_ARCEL
25 #elif defined(__arc__) && defined(__BIG_ENDIAN__) 24 #elif defined(__arc__) && defined(__BIG_ENDIAN__)
26--
272.16.2
28