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 0d477b5 commit 34c1b55Copy full SHA for 34c1b55
.github/workflows/build.yml
@@ -107,6 +107,11 @@ jobs:
107
run: |
108
echo "CXXFLAGS=-stdlib=libc++" >> $GITHUB_ENV
109
110
+ - name: Add clang LDFLAGS for macos to link against brew's libc++
111
+ if: ${{ contains(matrix.os, 'macos') && contains(matrix.cxx, 'clang') }}
112
+ run: |
113
+ echo "LDFLAGS=-L$(brew --prefix llvm)/lib/c++ -L$(brew --prefix llvm)/lib/unwind -lunwind" >> $GITHUB_ENV
114
+
115
- name: Build h5
116
117
cmake -S . -B build -G Ninja -DCMAKE_INSTALL_PREFIX=$HOME/install -DBuild_Documentation=${{ matrix.doc }}
0 commit comments