From f67007d07767c03462de009e5a8003a1d121af40 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 5 Apr 2023 16:18:27 -0700 Subject: [PATCH] Remove platform information for x86 PiperOrigin-RevId: 522182423 --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index fe8f2dc6..6e7493ca 100644 --- a/setup.py +++ b/setup.py @@ -348,10 +348,7 @@ class BuildExtension(build_ext.build_ext): for ext in self.extensions: target_name = self.get_ext_fullpath(ext.name) # Build x86 - self._build_binary( - ext, - ['--cpu=darwin_x86_64', '--ios_multi_cpus=i386,x86_64,armv7,arm64'], - ) + self._build_binary(ext) x86_name = self.get_ext_fullpath(ext.name) # Build Arm64 ext.name = ext.name + '.arm64'