diff options
author | Memphiz <memphis@machzwo.de> | 2015-10-18 18:04:24 +0200 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2015-10-18 18:04:24 +0200 |
commit | 1bf674b1cf7981e4b9c4016df0e5b00c59a514fe (patch) | |
tree | 5777ce790f4be3ab9d821f67b4074ef46fbe4b04 /tools/darwin | |
parent | 5ac03a4edd098926de61c38c79ea3933ef6064ef (diff) |
[ios] - all binaries need to be aligned to 16KB for iOS9 (this allows 32bit apps to run on 64bit devices with iOS9 and is also safe for all older iOS versions)
Diffstat (limited to 'tools/darwin')
-rw-r--r-- | tools/darwin/Configurations/App-iOS.xcconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/darwin/Configurations/App-iOS.xcconfig b/tools/darwin/Configurations/App-iOS.xcconfig index d31fb7173c..524b0408c4 100644 --- a/tools/darwin/Configurations/App-iOS.xcconfig +++ b/tools/darwin/Configurations/App-iOS.xcconfig @@ -40,7 +40,7 @@ COPY_PHASE_STRIP = NO DEAD_CODE_STRIPPING = NO OTHER_CPLUSPLUSFLAGS = $(inherited) $(OTHER_CFLAGS) -Wreorder -OTHER_LDFLAGS = $(XBMC_OTHER_LDFLAGS_COMMON) -weak_framework VideoToolbox +OTHER_LDFLAGS = $(XBMC_OTHER_LDFLAGS_COMMON) -weak_framework VideoToolbox -Wl,-segalign,4000 GCC_PREPROCESSOR_DEFINITIONS = TARGET_DARWIN_IOS $(inherited) |