Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
52ea80b1
Commit
52ea80b1
authored
Oct 09, 2013
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Analyzer] Inspect the architecture of the user project if needed.
See #1450
parent
e4e9fabc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
CHANGELOG.md
CHANGELOG.md
+5
-0
Gemfile.lock
Gemfile.lock
+1
-1
analyzer.rb
lib/cocoapods/installer/analyzer.rb
+1
-3
No files found.
CHANGELOG.md
View file @
52ea80b1
...
@@ -12,6 +12,11 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
...
@@ -12,6 +12,11 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
[
Kyle Fuller
](
https://github.com/kylef
)
[
Kyle Fuller
](
https://github.com/kylef
)
[
#1456
](
https://github.com/CocoaPods/CocoaPods/issues/1456
)
[
#1456
](
https://github.com/CocoaPods/CocoaPods/issues/1456
)
*
If an user target doesn't specify an architecture the value specified for the
project is used in CocoaPods targets.
[
Fabio Pelosin
](
https://github.com/irrationalfab
)
[
#1450
](
https://github.com/CocoaPods/CocoaPods/issues/1450
)
*
The Pods project now properly configures ARC on all build configurations.
*
The Pods project now properly configures ARC on all build configurations.
[
Fabio Pelosin
](
https://github.com/irrationalfab
)
[
Fabio Pelosin
](
https://github.com/irrationalfab
)
[
#1454
](
https://github.com/CocoaPods/CocoaPods/issues/1454
)
[
#1454
](
https://github.com/CocoaPods/CocoaPods/issues/1454
)
...
...
Gemfile.lock
View file @
52ea80b1
...
@@ -17,7 +17,7 @@ GIT
...
@@ -17,7 +17,7 @@ GIT
GIT
GIT
remote: https://github.com/CocoaPods/Xcodeproj.git
remote: https://github.com/CocoaPods/Xcodeproj.git
revision:
8911fee561255f4f11a29a48e345017aec605081
revision:
75a00063e9997e2dd3d617a3966f9c878bb99ba6
branch: master
branch: master
specs:
specs:
xcodeproj (0.12.0)
xcodeproj (0.12.0)
...
...
lib/cocoapods/installer/analyzer.rb
View file @
52ea80b1
...
@@ -461,9 +461,7 @@ module Pod
...
@@ -461,9 +461,7 @@ module Pod
def
compute_archs_for_target_definition
(
target_definition
,
user_targets
)
def
compute_archs_for_target_definition
(
target_definition
,
user_targets
)
archs
=
[]
archs
=
[]
user_targets
.
each
do
|
target
|
user_targets
.
each
do
|
target
|
target
.
build_configurations
.
each
do
|
configuration
|
archs
<<
target
.
common_resolved_build_setting
(
'ARCHS'
)
archs
<<
configuration
.
build_settings
[
'ARCHS'
]
end
end
end
archs
=
archs
.
compact
.
uniq
.
sort
archs
=
archs
.
compact
.
uniq
.
sort
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment