Skip to content

Commit a03b11b

Browse files
committed
add DYLD_LIBRARY_PATH for macos-x86_64
1 parent f39dda7 commit a03b11b

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/posix.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ jobs:
102102
build_lib "$PLAT" "$INTERFACE64" "0"
103103
fi
104104
105-
- name: Setup tmate session
106-
if: ${{ failure() }}
107-
uses: mxschmitt/action-tmate@v3
108-
with:
109-
limit-access-to-actor: true
105+
# - name: Setup tmate session
106+
# if: ${{ failure() }}
107+
# uses: mxschmitt/action-tmate@v3
108+
# with:
109+
# limit-access-to-actor: true
110110

111111
- name: Build and test wheel
112112
run: |

tools/build_steps.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ function do_build_lib {
125125
Darwin-x86_64)
126126
local bitness=64
127127
local target_flags="TARGET=CORE2"
128+
# Pick up the gfortran runtime libraries
129+
export DYLD_LIBRARY_PATH=/usr/local/lib:$DYLD_LIBRARY_PATH
128130
;;
129131
*-i686)
130132
local bitness=32

0 commit comments

Comments
 (0)