summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2025-06-04 20:46:42 -0700
committerKhem Raj <raj.khem@gmail.com>2025-06-04 20:48:38 -0700
commit2292fed3b45ddaed2a756cf9ab9f83c33c957c09 (patch)
tree0d23e6aa6dc4c46f1ab2db9df0cf4f1919b00961
parent27469599fa6302a90af252c5148daef26c4b2e81 (diff)
downloadmeta-openembedded-2292fed3b45ddaed2a756cf9ab9f83c33c957c09.tar.gz
lapack: Force gcc toolchainHEADmaster
It need gfortran to build and if we have clang as system compiler it does not work properly to compile it. Fixes aarch64-yoe-linux-gfortran: fatal error: cannot read spec file 'libgfortran.spec': No such file or directory compilation terminated. Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/lapack/lapack_3.12.1.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/lapack/lapack_3.12.1.bb b/meta-oe/recipes-devtools/lapack/lapack_3.12.1.bb
index f18ef1f292..7cb6c097f3 100644
--- a/meta-oe/recipes-devtools/lapack/lapack_3.12.1.bb
+++ b/meta-oe/recipes-devtools/lapack/lapack_3.12.1.bb
@@ -101,3 +101,6 @@ do_install_ptest () {
101 sed -i -e 's#${PYTHON}#/usr/bin/python3#g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake` 101 sed -i -e 's#${PYTHON}#/usr/bin/python3#g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake`
102 sed -i -e 's#${WORKDIR}##g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake` 102 sed -i -e 's#${WORKDIR}##g' `find ${D}${PTEST_PATH} -name CTestTestfile.cmake`
103} 103}
104
105# It needs fortran compiler and we do not enable fortran with clang yet
106TOOLCHAIN = "gcc"