diff options
author | Hofi <hofione@gmail.com> | 2015-05-08 01:11:25 +0200 |
---|---|---|
committer | Hofi <hofione@gmail.com> | 2015-05-08 01:11:25 +0200 |
commit | 072d9b870759fbbbf91ef7aa1a23162704ebfc34 (patch) | |
tree | 7af81d10faae9201b56f54ce81ee5b974668c70d /Kodi.xcodeproj | |
parent | db6e8e82f62af4f869b9c5aa9a426c241d68db18 (diff) |
Fixed OS X i386 Xcode builds on x86_64 build machines
Without assigning App-OSX.xcconfig to Kodi.app target building i386
target will not fix dependent libraries when bundling the Kodi.app with
copyframeworks-osx.command
copyframeworks-osx.command uses XBMC_DEPENDS that composed like
$(XBMC_DEPENDS_ROOT)/$(SDK_NAME)_$(CURRENT_ARCH)-target
CURRENT_ARCH not set correctly, without assigning App-OSX.xcconfig the
ONLY_ACTIVE_ARCH is not set and the builder machine architecture will
be used instead of the targeted architecture.
Diffstat (limited to 'Kodi.xcodeproj')
-rw-r--r-- | Kodi.xcodeproj/project.pbxproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kodi.xcodeproj/project.pbxproj b/Kodi.xcodeproj/project.pbxproj index b826ebc832..c0d05c57e8 100644 --- a/Kodi.xcodeproj/project.pbxproj +++ b/Kodi.xcodeproj/project.pbxproj @@ -13337,6 +13337,7 @@ }; 6E2FACBB0E26DF7A00DF79EA /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = E49910D1174E2E0000741B6D /* App-OSX.xcconfig */; buildSettings = { ARCHS = ( i386, @@ -13353,6 +13354,7 @@ }; 6E2FACBD0E26DF7A00DF79EA /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = E49910D1174E2E0000741B6D /* App-OSX.xcconfig */; buildSettings = { ARCHS = ( i386, |