Skip to content

Commit 841be59

Browse files
committed
hopefully clang comes with its own libc++
1 parent d07d206 commit 841be59

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,10 @@ jobs:
333333
directory: ${{ runner.temp }}/llvm
334334
- name: Add clang++-12 link
335335
working-directory: ${{ runner.temp }}/llvm/bin
336-
run: ln -s clang++ clang++-12
336+
run: |
337+
ln -s clang++ clang++-12
338+
# hack around libc++ ABI changes
339+
echo "DYLD_LIBRARY_PATH=${{ runner.temp }}/llvm/lib:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
337340
- name: Set BORING_BSSL_FIPS_COMPILER_EXTERNAL_TOOLCHAIN
338341
run: echo "BORING_BSSL_FIPS_COMPILER_EXTERNAL_TOOLCHAIN=$(brew --prefix ${{ matrix.target }})/toolchain" >> $GITHUB_ENV
339342
shell: bash

0 commit comments

Comments
 (0)