-
Notifications
You must be signed in to change notification settings - Fork 463
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Fixtures] Updated CommonBuildSettings with Xcode 8.2.1 #468
Conversation
Spec failures now at 19 (down from 46) |
All spec failures have been resolved, but now Rubocop is complaining 😕 |
CI is happy now 😪 |
lib/xcodeproj/constants.rb
Outdated
'SWIFT_OPTIMIZATION_LEVEL' => '-Onone', | ||
'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => 'DEBUG', | ||
}.freeze, | ||
[:release, :application, :swift] => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The separate entry for applications shouldn't be necessary
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right, removed it
@@ -3,15 +3,17 @@ | |||
@implementation ViewController | |||
|
|||
- (void)viewDidLoad { | |||
[super viewDidLoad]; | |||
[super viewDidLoad]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's with all these indentation changes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, my Xcode settings seem to use tabs, but that doesn't really matter here does it? (basically unused code)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you want me to change the indentation to spaces?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indentation has been changed to 4 spaces.
@segiddins Anything else you'd like to see different? |
@segiddins Can this be merged? |
Looks good to me |
@louisdh thanks! |
@louisdh with the release of Xcode 8.3, we'd certainly appreciate another PR if you find that there are more settings that need updating! :) |
Ok, I'll take a look. I'm glad this got merged since the diff. between 8.2.1 and 8.3 will be much smaller than this PR 🙂 |
I agree :). Thanks again for having a look! |
Updated Common Build Settings with Xcode 8.2.1.
Also updated gems to fix
bundler install
.This updates the default build settings. Including the default optimization level for Swift release targets, which is now whole module optimization.