Skip to content

Instantly share code, notes, and snippets.

@jeffbailey
Created October 16, 2014 12:29
Show Gist options
  • Save jeffbailey/c189ebb14cebd12ac693 to your computer and use it in GitHub Desktop.
Save jeffbailey/c189ebb14cebd12ac693 to your computer and use it in GitHub Desktop.
How to build cocoapods library for 32 bit architecture
# Remove 64-bit build architecture from Pods targets
post_install do |installer|
installer.project.targets.each do |target|
target.build_configurations.each do |configuration|
target.build_settings(configuration.name)['ARCHS'] = '$(ARCHS_STANDARD_32_BIT)'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment