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 1021bc3 commit c652026Copy full SHA for c652026
xcodebuildtvos.py
@@ -68,7 +68,11 @@ def _get_params(self):
68
sdk = self._get_sdk_string()
69
params.extend(("-sdk", sdk))
70
71
- params.append("OTHER_CFLAGS=-Qunused-arguments -fembed-bitcode")
+ is_device = len([arch for arch in self.archs
72
+ if arch.startswith("arm")]) > 0
73
+ if is_device:
74
+ params.append("OTHER_CFLAGS=-Qunused-arguments -fembed-bitcode")
75
+
76
return params
77
78
def _xcodebuild(self, *actions):
0 commit comments