Skip to content

Commit 81c198c

Browse files
author
Dario Segura
committed
[TVOS] Suppressed unused argument warning (promoted to error by default) to avoid issues while building from command line for tvOS.
1 parent fccffee commit 81c198c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

xcodebuildtvos.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ def _get_params(self):
6767
# Auto-select SDK if archs is set:
6868
sdk = self._get_sdk_string()
6969
params.extend(("-sdk", sdk))
70-
params.append("OTHER_CFLAGS=-fembed-bitcode")
70+
71+
params.append("OTHER_CFLAGS=-Qunused-arguments -fembed-bitcode")
7172
return params
7273

7374
def _xcodebuild(self, *actions):

0 commit comments

Comments
 (0)