From f2ba821c1fe83d88cd03cd93d60ed964d57f7a08 Mon Sep 17 00:00:00 2001 From: Ed J Date: Wed, 10 Jul 2024 20:20:00 +0100 Subject: [PATCH] otool -hV -L Real.bundle --- github-actions/ci-dist/action.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/github-actions/ci-dist/action.yml b/github-actions/ci-dist/action.yml index 0c6fd0d..5376f9b 100644 --- a/github-actions/ci-dist/action.yml +++ b/github-actions/ci-dist/action.yml @@ -386,7 +386,15 @@ runs: echo "::group::test (no coverage)" cd ${{ inputs.path }} if [ -f Makefile.PL ]; then - ( $TEST_RUNNER_PREFIX make && $TEST_RUNNER_PREFIX make test ) || exit 1 + ( $TEST_RUNNER_PREFIX make && (set -x; + otool -hV -L blib/arch/auto/PDL/LinearAlgebra/Real/Real.bundle; + ls -alR /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/; + dyld_info /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/LAPACK; + ls -alR /opt/homebrew/opt/lapack/; + cc -L/opt/homebrew/opt/lapack -L/opt/homebrew/Cellar/gcc/14.1.0_2/bin/../lib/gcc/current/gcc/aarch64-apple-darwin23/14/../../.. -L/usr/lib -print-file-name=liblapack.dylib; + (cd Trans; rm -f ../blib/arch/auto/PDL/LinearAlgebra/Trans/Trans.bundle; + LD_RUN_PATH="/usr/lib" cc -v -Wl,-rpath,"/usr/lib" -mmacosx-version-min=14.5 -bundle -undefined dynamic_lookup -fstack-protector-strong Trans.o pp-geexp.o pp-__Ccgeexp.o pp-__Ncgeexp.o pp-__Cctrsqrt.o pp-__Nctrsqrt.o pp-__Cctrfun.o pp-__Nctrfun.o selectfunc.o -o ../blib/arch/auto/PDL/LinearAlgebra/Trans/Trans.bundle -L/opt/homebrew/opt/lapack -L/opt/homebrew/Cellar/gcc/14.1.0_2/bin/../lib/gcc/current/gcc/aarch64-apple-darwin23/14/../../.. -L/usr/lib -llapack -lblas -lm); + $TEST_RUNNER_PREFIX make test) ) || exit 1 elif [ -f Build.PL ]; then ( $TEST_RUNNER_PREFIX $MYPERL Build test ) || exit 1 else