diff options
author | fuzzard <fuzzard@kodi.tv> | 2023-02-06 10:18:17 +1000 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2023-03-11 11:22:52 +1000 |
commit | b8500aec18e8dbf2ffd12761a6849b8ff8d60008 (patch) | |
tree | 5e8dd4c705ad1ca19b578d5c72e5e485652a2802 /tools | |
parent | cfad925044a9424182e0e3f388cc595abc66ed07 (diff) |
[buildsteps] add -parallelizeTargets to execution of xcodebuild projects
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/buildsteps/ios/make-xbmc | 1 | ||||
-rwxr-xr-x | tools/buildsteps/tvos/make-xbmc | 1 |
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" |