Commit 0d327a0c authored by Fabio Pelosin's avatar Fabio Pelosin

[Analyzer] Fix non integrating architecture

parent 841407c9
......@@ -11,8 +11,8 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
[Fabio Pelosin](https://github.com/irrationalfab)
[#1185](https://github.com/CocoaPods/CocoaPods/pull/1185)
* Non integrating installations now set the architecture of the Pod targets to
the `$(ARCHS_STANDARD)` value.
* Non integrating installations for OS X targets now set the architecture of
* the Pod targets to `$(ARCHS_STANDARD_64_BIT)`.
[Fabio Pelosin](https://github.com/irrationalfab)
[#1185](https://github.com/CocoaPods/CocoaPods/pull/1185)
......
......@@ -182,7 +182,9 @@ module Pod
target.client_root = config.installation_root
target.user_target_uuids = []
target.user_build_configurations = {}
target.archs = '$(ARCHS_STANDARD)'
if target_definition.platform.name == :osx
target.archs = '$(ARCHS_STANDARD_64_BIT)'
end
end
grouped_specs = specs.map do |spec|
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment