Commit b3a3d2d0 authored by Fabio Pelosin's avatar Fabio Pelosin

[Analyzer] Fix non integrating architecture

parent 0d327a0c
...@@ -193,8 +193,15 @@ module Pod ...@@ -193,8 +193,15 @@ module Pod
grouped_specs.each do |pod_specs| grouped_specs.each do |pod_specs|
pod_target = PodTarget.new(pod_specs, target_definition, sandbox) pod_target = PodTarget.new(pod_specs, target_definition, sandbox)
if config.integrate_targets?
pod_target.user_build_configurations = target.user_build_configurations pod_target.user_build_configurations = target.user_build_configurations
pod_target.archs = @archs_by_target_def[target_definition] pod_target.archs = @archs_by_target_def[target_definition]
else
pod_target.user_build_configurations = {}
if target_definition.platform.name == :osx
pod_target.archs = '$(ARCHS_STANDARD_64_BIT)'
end
end
target.pod_targets << pod_target target.pod_targets << pod_target
end end
end end
......
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