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 fef0bcd commit ad8b825Copy full SHA for ad8b825
.github/actions/build-sdks/action.yml
@@ -294,6 +294,10 @@ runs:
294
295
if [[ "$RUNNER_OS" == "Linux" ]]; then
296
export CXXFLAGS="-D_GLIBCXX_USE_CXX11_ABI=0" # Disables the C++11 ABI features for VTK compatibility
297
+ elif [[ "$RUNNER_OS" == "macOS" ]]; then
298
+ export CFLAGS="-mmacosx-version-min=11.1"
299
+ export CXXFLAGS="-mmacosx-version-min=11.1"
300
+ export LDFLAGS="-mmacosx-version-min=11.1"
301
fi
302
303
if [[ "${{ inputs.use-vtk }}" == "vtk" ]]; then
0 commit comments