From 51a056e2456a38d9a757ef1ecd16ccbebde8da27 Mon Sep 17 00:00:00 2001 From: Jacob Oursland Date: Mon, 9 Jun 2025 12:59:20 -0700 Subject: [PATCH] CI: set MACOS_DEPLOYMENT_TARGET=10.13 for Intel macOS. The MACOS_DEPLOYMENT_TARGET was not explicitly set, resulting in a default of 10.9, which does not support C++ features needed by some components in FreeCAD. This PR sets the MACOS_DEPLOYMENT_TARGET to 10.13 to build for platforms running macOS High Sierra (2017) or newer. --- package/rattler-build/conda_build_config.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package/rattler-build/conda_build_config.yaml b/package/rattler-build/conda_build_config.yaml index 688c3a50e4..fbebc3758e 100644 --- a/package/rattler-build/conda_build_config.yaml +++ b/package/rattler-build/conda_build_config.yaml @@ -1,7 +1,7 @@ -c_compiler: # [win] - - vs2022 # [win] -cxx_compiler: # [win] - - vs2022 # [win] +c_compiler: # [win] + - vs2022 # [win] +cxx_compiler: # [win] + - vs2022 # [win] -MACOSX_SDK_VERSION: # [osx] - - '11.0' # [osx] +MACOSX_DEPLOYMENT_TARGET: # [osx] + - '10.13' # [osx]