We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4f711b commit 2f1105dCopy full SHA for 2f1105d
1 file changed
.github/workflows/ci.yml
@@ -150,18 +150,16 @@ jobs:
150
brew install meson ninja pkg-config sqlite
151
152
- name: Configure
153
- env:
154
- # macOS 11.0+ required for std::jthread (libc++ LLVM 11 sync primitives)
155
- MACOSX_DEPLOYMENT_TARGET: '11.0'
156
run: |
+ # macOS 11.0+ required for std::jthread (libc++ LLVM 11 sync primitives)
157
meson setup build \
158
-Dbuildtype=debugoptimized \
159
-Denable_simd_avx=false \
160
- -Denable_simd_neon=true
+ -Denable_simd_neon=true \
+ -Dcpp_args="-mmacosx-version-min=11.0" \
+ -Dcpp_link_args="-mmacosx-version-min=11.0"
161
162
- name: Build
163
164
165
run: meson compile -C build
166
167
- name: Test
0 commit comments