From 7c74010eaad01a33aed5e0b544865707268ac446 Mon Sep 17 00:00:00 2001 From: Anthony Shoumikhin Date: Sun, 21 Apr 2024 15:29:34 -0700 Subject: [PATCH] Specify OSX deployment target for python package. (#3193) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/3193 . Reviewed By: mikekgfb Differential Revision: D56403324 fbshipit-source-id: 07b29b0b12a8995bce4d45ea9308a5b3c566d7e6 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 26824826d9..c8ba87ab51 100644 --- a/setup.py +++ b/setup.py @@ -364,6 +364,7 @@ def run(self): # useful error information to users. "-DEXECUTORCH_ENABLE_LOGGING=ON", "-DEXECUTORCH_LOG_LEVEL=Info", + "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.13", ] build_args = [f"-j{self.parallel}"]