We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c8dcb3 commit 6356190Copy full SHA for 6356190
.github/workflows/dynamic_arch.yml
@@ -89,6 +89,14 @@ jobs:
89
echo "max_size = 300M" > ~/.ccache/ccache.conf
90
echo "compression = true" >> ~/.ccache/ccache.conf
91
ccache -s
92
+
93
+ - name: Add gfortran runtime to link path
94
+ if: matrix.build == 'make' && runner.os == 'macOS'
95
+ run: |
96
+ GFORTRAN_LIBDIR=$(gfortran -print-file-name=libgfortran.dylib | xargs dirname)
97
+ echo "Using gfortran runtime in $GFORTRAN_LIBDIR"
98
+ # Preserve whatever LDFLAGS may already contain
99
+ echo "LDFLAGS=${LDFLAGS:+$LDFLAGS }-L$GFORTRAN_LIBDIR" >> "$GITHUB_ENV"
100
101
- name: Build OpenBLAS
102
run: |
0 commit comments