Skip to content

Commit 33ae890

Browse files
committed
Merge pull request #32 from dev4dev/bitcode-fix
Added missing flag for enabling bitcode
1 parent 02383b2 commit 33ae890

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cocoapods-binary/rome/build_framework.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def build_for_iosish_platform(sandbox,
2525
other_options = []
2626
if bitcode_enabled
2727
other_options += ['OTHER_CFLAGS="-fembed-bitcode"']
28+
other_options += ['BITCODE_GENERATION_MODE=bitcode']
2829
end
2930
xcodebuild(sandbox, target_label, device, deployment_target, other_options)
3031
xcodebuild(sandbox, target_label, simulator, deployment_target, other_options + ['ARCHS=x86_64', 'ONLY_ACTIVE_ARCH=NO'])
@@ -134,4 +135,3 @@ def self.build_dir(sandbox_root)
134135

135136
end
136137
end
137-

0 commit comments

Comments
 (0)