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