summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-numpy
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python/python3-numpy')
-rw-r--r--meta/recipes-devtools/python/python3-numpy/0001-numpy-core-setup.py-disable-svml-for-now.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-devtools/python/python3-numpy/0001-numpy-core-setup.py-disable-svml-for-now.patch b/meta/recipes-devtools/python/python3-numpy/0001-numpy-core-setup.py-disable-svml-for-now.patch
deleted file mode 100644
index 66e322116a..0000000000
--- a/meta/recipes-devtools/python/python3-numpy/0001-numpy-core-setup.py-disable-svml-for-now.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1From 0f0601e79f9ce7614d157284523e6cd8af2259d5 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex@linutronix.de>
3Date: Wed, 5 Jan 2022 12:12:47 +0100
4Subject: [PATCH] numpy/core/setup.py: disable svml for now
5
6The check really doesn't work in cross compiling,
7as it is using host python to see what arch we're
8building on. Issue reported upstream:
9https://github.com/numpy/numpy/issues/20736
10
11Upstream-Status: Inappropriate [needs upstream fix]
12Signed-off-by: Alexander Kanavin <alex@linutronix.de>
13---
14 numpy/core/setup.py | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/numpy/core/setup.py b/numpy/core/setup.py
18index a5f423d..945f2dd 100644
19--- a/numpy/core/setup.py
20+++ b/numpy/core/setup.py
21@@ -70,7 +70,7 @@ def can_link_svml():
22 """
23 machine = platform.machine()
24 system = platform.system()
25- return "x86_64" in machine and system == "Linux"
26+ return False
27
28 def check_svml_submodule(svmlpath):
29 if not os.path.exists(svmlpath + "/README.md"):