diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-07-23 02:58:43 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-07-23 03:01:15 +0530 |
commit | e1bbea468d936aa974c985e3642c6464b29d1f9d (patch) | |
tree | a802e10f924949ff82aefc8e070c7bbb5ff0f5a3 /config | |
parent | 7b32fd33186d43bc026a2b96f9b88079654b69ec (diff) |
cerbero: Add -fembed-bitcode to GAS invocations for ios
This is needed by gst-libav-1.0 and x264.
Diffstat (limited to 'config')
-rw-r--r-- | config/ios.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/ios.config b/config/ios.config index 85f7fbb0..13993afb 100644 --- a/config/ios.config +++ b/config/ios.config @@ -121,7 +121,7 @@ os.environ['AS']= 'as' if target_arch in [Architecture.X86, Architecture.X86_64]: os.environ.pop('GAS', None) else: - os.environ['GAS']= '%s %s %s' % ('gas-preprocessor.pl', os.environ['CC'], os.environ['CFLAGS']) + os.environ['GAS']= '%s %s %s -fembed-bitcode' % ('gas-preprocessor.pl', os.environ['CC'], os.environ['CFLAGS']) |