summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2022-06-07 13:18:05 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2022-09-03 18:02:06 +0530
commit86c983a696e20e80ba0dbeb3af309896fd8726e4 (patch)
tree6259d997e10df253964e0f7785c46b9a9923ff8c /config
parent6edf49ad028b92397c7f9ff120658b010afd11ff (diff)
Remove Apple Bitcode support
Apple has deprecated Bitcode support in XCode 14 with a loud warning asking users to stop using it, and submissions to the App Store now strip bitcode information. Time to just delete all the relevant code. https://developer.apple.com/documentation/xcode-release-notes/xcode-14-release-notes#Deprecations Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/879>
Diffstat (limited to 'config')
-rw-r--r--config/darwin.config2
-rw-r--r--config/ios.config2
2 files changed, 2 insertions, 2 deletions
diff --git a/config/darwin.config b/config/darwin.config
index 6d8a1177..a047cf42 100644
--- a/config/darwin.config
+++ b/config/darwin.config
@@ -115,7 +115,7 @@ env['AS']= 'as'
if target_arch in [Architecture.X86, Architecture.X86_64]:
env.pop('GAS', None)
else:
- env['GAS']= '%s %s %s -fembed-bitcode' % ('gas-preprocessor.pl', env['CC'], env['CFLAGS'])
+ env['GAS']= '%s %s %s' % ('gas-preprocessor.pl', env['CC'], env['CFLAGS'])
diff --git a/config/ios.config b/config/ios.config
index e1a3ce11..c37bfaf3 100644
--- a/config/ios.config
+++ b/config/ios.config
@@ -139,7 +139,7 @@ env['AS']= 'as'
if target_arch in [Architecture.X86, Architecture.X86_64]:
env.pop('GAS', None)
else:
- env['GAS']= '%s %s %s -fembed-bitcode' % ('gas-preprocessor.pl', env['CC'], env['CFLAGS'])
+ env['GAS']= '%s %s %s' % ('gas-preprocessor.pl', env['CC'], env['CFLAGS'])