aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzard <fuzzard@kodi.tv>2023-02-06 10:18:17 +1000
committerfuzzard <fuzzard@kodi.tv>2023-03-11 11:22:52 +1000
commitb8500aec18e8dbf2ffd12761a6849b8ff8d60008 (patch)
tree5e8dd4c705ad1ca19b578d5c72e5e485652a2802
parentcfad925044a9424182e0e3f388cc595abc66ed07 (diff)
downloadxbmc-b8500aec18e8dbf2ffd12761a6849b8ff8d60008.tar.xz
[buildsteps] add -parallelizeTargets to execution of xcodebuild projects
-rwxr-xr-xtools/buildsteps/ios/make-xbmc1
-rwxr-xr-xtools/buildsteps/tvos/make-xbmc1
2 files changed, 2 insertions, 0 deletions
diff --git a/tools/buildsteps/ios/make-xbmc b/tools/buildsteps/ios/make-xbmc
index 167fd7a0e6..9d19d7a1fe 100755
--- a/tools/buildsteps/ios/make-xbmc
+++ b/tools/buildsteps/ios/make-xbmc
@@ -3,5 +3,6 @@ XBMC_PLATFORM_DIR=ios
. $WORKSPACE/tools/buildsteps/defaultenv
cd $WORKSPACE/build;xcodebuild -configuration $Configuration build -jobs $BUILDTHREADS \
+ -parallelizeTargets \
SDKROOT=iphoneos$SDK_VERSION XBMC_DEPENDS_ROOT=$XBMC_DEPENDS_ROOT \
CODE_SIGNING_ALLOWED="NO"
diff --git a/tools/buildsteps/tvos/make-xbmc b/tools/buildsteps/tvos/make-xbmc
index d7b401c160..268936bd89 100755
--- a/tools/buildsteps/tvos/make-xbmc
+++ b/tools/buildsteps/tvos/make-xbmc
@@ -3,5 +3,6 @@ XBMC_PLATFORM_DIR=tvos
. $WORKSPACE/tools/buildsteps/defaultenv
cd $WORKSPACE/build;xcodebuild -configuration $Configuration build -jobs $BUILDTHREADS \
+ -parallelizeTargets \
SDKROOT=appletvos$SDK_VERSION XBMC_DEPENDS_ROOT=$XBMC_DEPENDS_ROOT \
CODE_SIGNING_ALLOWED="NO"