Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
From 46eea664cf89d0602e7ff16d587c37c045b125b7 Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
Date: Thu, 10 Dec 2015 13:20:30 +0200
|
||||
Subject: [PATCH] Don't search /usr and so on for libraries by default to
|
||||
|
||||
avoid host contamination.
|
||||
|
||||
Upstream-Status: Inappropriate (As the code stands, this is a hack)
|
||||
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
||||
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
|
||||
---
|
||||
numpy/distutils/system_info.py | 42 +++++-----------------------------
|
||||
1 file changed, 6 insertions(+), 36 deletions(-)
|
||||
|
||||
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py
|
||||
index feb28f6..a48d6d1 100644
|
||||
--- a/numpy/distutils/system_info.py
|
||||
+++ b/numpy/distutils/system_info.py
|
||||
@@ -327,44 +327,14 @@ def add_system_root(library_root):
|
||||
add_system_root(os.path.join(conda_dir, 'Library'))
|
||||
|
||||
else:
|
||||
- default_lib_dirs = libpaths(['/usr/local/lib', '/opt/lib', '/usr/lib',
|
||||
- '/opt/local/lib', '/sw/lib'], platform_bits)
|
||||
default_runtime_dirs = []
|
||||
- default_include_dirs = ['/usr/local/include',
|
||||
- '/opt/include',
|
||||
- # path of umfpack under macports
|
||||
- '/opt/local/include/ufsparse',
|
||||
- '/opt/local/include', '/sw/include',
|
||||
- '/usr/include/suitesparse']
|
||||
- default_src_dirs = ['.', '/usr/local/src', '/opt/src', '/sw/src']
|
||||
-
|
||||
- default_x11_lib_dirs = libpaths(['/usr/X11R6/lib', '/usr/X11/lib',
|
||||
- '/usr/lib'], platform_bits)
|
||||
- default_x11_include_dirs = ['/usr/X11R6/include', '/usr/X11/include']
|
||||
-
|
||||
- if os.path.exists('/usr/lib/X11'):
|
||||
- globbed_x11_dir = glob('/usr/lib/*/libX11.so')
|
||||
- if globbed_x11_dir:
|
||||
- x11_so_dir = os.path.split(globbed_x11_dir[0])[0]
|
||||
- default_x11_lib_dirs.extend([x11_so_dir, '/usr/lib/X11'])
|
||||
- default_x11_include_dirs.extend(['/usr/lib/X11/include',
|
||||
- '/usr/include/X11'])
|
||||
-
|
||||
- with open(os.devnull, 'w') as tmp:
|
||||
- try:
|
||||
- p = subprocess.Popen(["gcc", "-print-multiarch"], stdout=subprocess.PIPE,
|
||||
- stderr=tmp)
|
||||
- except (OSError, DistutilsError):
|
||||
- # OSError if gcc is not installed, or SandboxViolation (DistutilsError
|
||||
- # subclass) if an old setuptools bug is triggered (see gh-3160).
|
||||
- pass
|
||||
- else:
|
||||
- triplet = str(p.communicate()[0].decode().strip())
|
||||
- if p.returncode == 0:
|
||||
- # gcc supports the "-print-multiarch" option
|
||||
- default_x11_lib_dirs += [os.path.join("/usr/lib/", triplet)]
|
||||
- default_lib_dirs += [os.path.join("/usr/lib/", triplet)]
|
||||
|
||||
+ default_lib_dirs = libpaths(['/deadir/lib'], platform_bits)
|
||||
+ default_include_dirs = ['/deaddir/include']
|
||||
+ default_src_dirs = ['.', '/deaddir/src']
|
||||
+
|
||||
+ default_x11_lib_dirs = libpaths(['/deaddir/lib'], platform_bits)
|
||||
+ default_x11_include_dirs = ['/deaddir/include']
|
||||
|
||||
if os.path.join(sys.prefix, 'lib') not in default_lib_dirs:
|
||||
default_lib_dirs.insert(0, os.path.join(sys.prefix, 'lib'))
|
||||
@@ -0,0 +1,50 @@
|
||||
From eb6d6579150bf4684603ce377c51e90ad3bb8109 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sun, 15 Nov 2020 15:32:39 -0800
|
||||
Subject: [PATCH] numpy/core: Define RISCV-32 support
|
||||
|
||||
Helps compile on riscv32
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/numpy/numpy/pull/17780]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
numpy/core/include/numpy/npy_cpu.h | 3 +++
|
||||
numpy/core/include/numpy/npy_endian.h | 1 +
|
||||
2 files changed, 4 insertions(+)
|
||||
|
||||
diff --git a/numpy/core/include/numpy/npy_cpu.h b/numpy/core/include/numpy/npy_cpu.h
|
||||
index 78d229e..04be511 100644
|
||||
--- a/numpy/core/include/numpy/npy_cpu.h
|
||||
+++ b/numpy/core/include/numpy/npy_cpu.h
|
||||
@@ -19,6 +19,7 @@
|
||||
* NPY_CPU_ARCEB
|
||||
* NPY_CPU_RISCV64
|
||||
* NPY_CPU_LOONGARCH
|
||||
+ * NPY_CPU_RISCV32
|
||||
* NPY_CPU_WASM
|
||||
*/
|
||||
#ifndef NUMPY_CORE_INCLUDE_NUMPY_NPY_CPU_H_
|
||||
@@ -104,6 +105,8 @@
|
||||
#define NPY_CPU_ARCEB
|
||||
#elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64
|
||||
#define NPY_CPU_RISCV64
|
||||
+#elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 32
|
||||
+ #define NPY_CPU_RISCV32
|
||||
#elif defined(__loongarch__)
|
||||
#define NPY_CPU_LOONGARCH
|
||||
#elif defined(__EMSCRIPTEN__)
|
||||
diff --git a/numpy/core/include/numpy/npy_endian.h b/numpy/core/include/numpy/npy_endian.h
|
||||
index 5e58a7f..0926212 100644
|
||||
--- a/numpy/core/include/numpy/npy_endian.h
|
||||
+++ b/numpy/core/include/numpy/npy_endian.h
|
||||
@@ -49,6 +49,7 @@
|
||||
|| defined(NPY_CPU_PPC64LE) \
|
||||
|| defined(NPY_CPU_ARCEL) \
|
||||
|| defined(NPY_CPU_RISCV64) \
|
||||
+ || defined(NPY_CPU_RISCV32) \
|
||||
|| defined(NPY_CPU_LOONGARCH) \
|
||||
|| defined(NPY_CPU_WASM)
|
||||
#define NPY_BYTE_ORDER NPY_LITTLE_ENDIAN
|
||||
--
|
||||
2.20.1
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
This regex decides whether to use O3 opimisation on numpy or not.
|
||||
|
||||
It includes "od", which happens to be a substring of "reproducible"
|
||||
but not "qemux86-world".
|
||||
|
||||
The regex will run against all compiler options including things like:
|
||||
|
||||
-fmacro-prefix-map=/XXX/build/tmp/work/core2-64-poky-linux/python3-numpy/1.26.0/numpy-1.26.0=/usr/src/debug/python3-numpy/1.26.0-r0
|
||||
|
||||
i.e. including build paths.
|
||||
|
||||
Reduce the regex to something deterministic for our builds, assuming
|
||||
nobody builds in /home/debug:full/
|
||||
|
||||
The autobuilder race depended upon whether qemux86-world or the
|
||||
reproducible target ran first and won the race to populate sstate.
|
||||
|
||||
Upstream-Status: Inappropriate [upstream have dropped distutils and switched to meson]
|
||||
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
||||
|
||||
Index: numpy-1.26.0/numpy/distutils/ccompiler_opt.py
|
||||
===================================================================
|
||||
--- numpy-1.26.0.orig/numpy/distutils/ccompiler_opt.py
|
||||
+++ numpy-1.26.0/numpy/distutils/ccompiler_opt.py
|
||||
@@ -990,7 +990,7 @@ class _CCompiler:
|
||||
("cc_is_nocc", "", ""),
|
||||
)
|
||||
detect_args = (
|
||||
- ("cc_has_debug", ".*(O0|Od|ggdb|coverage|debug:full).*", ""),
|
||||
+ ("cc_has_debug", ".*debug:full.*", ""),
|
||||
("cc_has_native",
|
||||
".*(-march=native|-xHost|/QxHost|-mcpu=a64fx).*", ""),
|
||||
# in case if the class run with -DNPY_DISABLE_OPTIMIZATION
|
||||
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import numpy
|
||||
numpy.test(label='full', verbose=2)
|
||||
|
||||
Reference in New Issue
Block a user