From 988751a190dcc80a65fa9833a66109cef0f3cb0c Mon Sep 17 00:00:00 2001 From: Anthony Shoumikhin Date: Sun, 21 Apr 2024 20:17:38 -0700 Subject: [PATCH] Specify OSX deployment target for python package. (#3194) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/3194 overriding_review_checks_triggers_an_audit_and_retroactive_review Oncall Short Name: executorch Differential Revision: D56405473 fbshipit-source-id: 785709e8acc1b07e57825b278c3e0a355641e13a (cherry picked from commit a7a9ab3c190d84f28830816fb88a1be0824bf333) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 931ae1ab97c..92fd1e3f778 100644 --- a/setup.py +++ b/setup.py @@ -429,6 +429,7 @@ def run(self): # useful error information to users. "-DEXECUTORCH_ENABLE_LOGGING=ON", "-DEXECUTORCH_LOG_LEVEL=Info", + "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.15", ] build_args = [f"-j{self.parallel}"]