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,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
ctest --force-new-ctest-process | sed -u 's/\*\*\*/ /g' | awk '/Test +#/{gsub(/Passed/,"PASS"); gsub(/Failed/,"FAIL"); gsub(/Skipped/,"SKIP"); print $6": "$4; fflush();}'
|
||||
@@ -0,0 +1,102 @@
|
||||
SUMMARY = "Linear Algebra PACKage"
|
||||
URL = "http://www.netlib.org/lapack"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=d0e7a458f9fcbf0a3ba97cef3128b85d"
|
||||
|
||||
# Recipe needs FORTRAN support (copied from conf/local.conf.sample.extended)
|
||||
# Enabling FORTRAN
|
||||
# Note this is not officially supported and is just illustrated here to
|
||||
# show an example of how it can be done
|
||||
# You'll also need your fortran recipe to depend on libgfortran
|
||||
#FORTRAN:forcevariable = ",fortran"
|
||||
#RUNTIMETARGET:append:pn-gcc-runtime = " libquadmath"
|
||||
|
||||
DEPENDS = "libgfortran \
|
||||
${@bb.utils.contains('PTEST_ENABLED', '1', 'rsync-native', '', d)} \
|
||||
"
|
||||
RDEPENDS:${PN}-ptest += "cmake"
|
||||
|
||||
SRCREV = "04b044e020a3560ccfa9988c8a80a1fb7083fc2e"
|
||||
SRC_URI = "git://github.com/Reference-LAPACK/lapack.git;protocol=https;branch=master \
|
||||
${@bb.utils.contains('PTEST_ENABLED', '1', 'file://run-ptest', '', d)} \
|
||||
"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
PACKAGECONFIG ?= ""
|
||||
PACKAGECONFIG[lapacke] = "-DLAPACKE=ON,-DLAPACKE=OFF"
|
||||
PACKAGECONFIG[cblas] = "-DCBLAS=ON,-DCBLAS=OFF"
|
||||
|
||||
EXTRA_OECMAKE = " -DBUILD_SHARED_LIBS=ON \
|
||||
${@bb.utils.contains('PTEST_ENABLED', '1', ' -DBUILD_TESTING=ON', '', d)} \
|
||||
"
|
||||
OECMAKE_GENERATOR = "Unix Makefiles"
|
||||
|
||||
inherit cmake pkgconfig ptest
|
||||
EXCLUDE_FROM_WORLD = "1"
|
||||
|
||||
# The `xerbla.o` file contains an absolute path in `xerbla.f.o`, but the options
|
||||
# `-fdebug-prefix-map` and `-ffile-prefix-map` cannot be used because gfortran does
|
||||
# not support them. And we cannot easily change CMake to use relative paths, because
|
||||
# it will convert them to absolute paths when generating Unix Makefiles or Ninja:
|
||||
# https://gitlab.kitware.com/cmake/community/-/wikis/FAQ#why-does-cmake-use-full-paths-or-can-i-copy-my-build-tree
|
||||
# https://gitlab.kitware.com/cmake/cmake/-/issues/13894
|
||||
#
|
||||
# To address this issue, we manually replace the absolute path with a relative path
|
||||
# in the generated `build.make` file.
|
||||
#
|
||||
# An issue has been reported: https://github.com/Reference-LAPACK/lapack/issues/1087,
|
||||
# requesting a fix in the source code.
|
||||
#
|
||||
# This workaround resolves the TMPDIR [buildpaths] issue by converting the absolute path
|
||||
# of `xerbla.f` to a relative path. The steps are as follows:
|
||||
#
|
||||
# 1. Locate all `build.make` files after the `do_configure` step is completed.
|
||||
# 2. Compute the relative path for various `*.f` files based on the current build directory.
|
||||
# 3. Replace the absolute path with the calculated relative path in the `build.make` files
|
||||
#
|
||||
# Additionally, when ptests are enabled, apply a simpler workaround for ptest code:
|
||||
# - Replace occurrences of `${WORKDIR}` in all `build.make` files under the TESTING directory, excluding
|
||||
# the MATGEN subdirectory, with a relative path prefix of `"../../.."`.
|
||||
do_configure:append(){
|
||||
for file in `find ${B} -name build.make`; do
|
||||
# Replacing all .f files found with:
|
||||
# for f in $(find ${S} -name \*.f -printf " %f" | sort -u); do
|
||||
# would be more reliable with other optional PACKAGECONFIGs, but also very slow as there are
|
||||
# ~ 3500 of them and this loop takes around 20 minutes
|
||||
for f in xerbla c_cblat1 c_cblat2 c_cblat3 c_dblat1 c_dblat2 c_dblat3 c_sblat1 c_sblat2 c_sblat3 c_zblat1 c_zblat2 c_zblat3; do
|
||||
sed -i -e "s#\(.*-c \).*\(/$f\.f \)#\1$(grep "\-c .*$f\.f" $file | awk -F'cd ' '{print $2}'| \
|
||||
awk "{src=\$1; sub(/.*-c /, \"\"); sub(/$f\.f.*/, \"\"); obj=\$0; print src, obj}" | \
|
||||
while read src obj; do echo "$(realpath --relative-to="$src" "$obj")"; done)\2#g" $file
|
||||
done
|
||||
done
|
||||
if ${@bb.utils.contains('PTEST_ENABLED', '1', 'true', 'false', d)} ; then
|
||||
for file in `find . -name build.make -path '*TESTING*' -not -path '*MATGEN*'`; do
|
||||
sed -i -e "s#\(.*-c \)\(${WORKDIR}\)\(.*.[f|F] \)#\1../../..\3#g" $file
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
do_install_ptest () {
|
||||
rsync -a ${B}/TESTING ${D}${PTEST_PATH} \
|
||||
--exclude CMakeFiles \
|
||||
--exclude cmake_install.cmake \
|
||||
--exclude Makefile
|
||||
rsync -a ${B}/BLAS ${D}${PTEST_PATH} \
|
||||
--exclude CMakeFiles \
|
||||
--exclude cmake_install.cmake \
|
||||
--exclude Makefile
|
||||
rsync -a ${B}/LAPACKE ${D}${PTEST_PATH} \
|
||||
--exclude CMakeFiles \
|
||||
--exclude cmake_install.cmake \
|
||||
--exclude Makefile
|
||||
cp -r ${B}/bin ${D}${PTEST_PATH}
|
||||
cp -r ${B}/lapack_testing.py ${D}${PTEST_PATH}
|
||||
cp ${B}/CTestTestfile.cmake ${D}${PTEST_PATH}
|
||||
cp ${S}/TESTING/*.in ${S}/TESTING/runtest.cmake ${D}${PTEST_PATH}/TESTING
|
||||
cp ${S}/BLAS/TESTING/*.in ${D}${PTEST_PATH}/BLAS/TESTING
|
||||
sed -i -e 's#${B}#${PTEST_PATH}#g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake`
|
||||
sed -i -e 's#${S}#${PTEST_PATH}#g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake`
|
||||
sed -i -e 's#${RECIPE_SYSROOT_NATIVE}##g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake`
|
||||
sed -i -e 's#${PYTHON}#/usr/bin/python3#g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake`
|
||||
sed -i -e 's#${WORKDIR}##g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake`
|
||||
}
|
||||
Reference in New Issue
Block a user