We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d0cb93 commit 567a929Copy full SHA for 567a929
.github/workflows/CI.yml
@@ -34,10 +34,11 @@ jobs:
34
- uses: actions/setup-python@v5
35
with:
36
python-version: '3.10'
37
- - name: Set CFLAGS for specific targets
+ - name: Set CFLAGS and CXXFLAGS for specific targets
38
run: |
39
if [[ ${{ matrix.platform.target }} == "ppc64le" || ${{ matrix.platform.target }} == "aarch64" || ${{ matrix.platform.target }} == "armv7" ]]; then
40
echo "CFLAGS=-std=c99" >> $GITHUB_ENV
41
+ echo "CXXFLAGS=-std=c++11" >> $GITHUB_ENV
42
fi
43
- name: Build wheels
44
uses: PyO3/maturin-action@v1
0 commit comments