Skip to content

Commit

Permalink
Merge pull request #58 from boredzo/standard-archs-except-on-Mac
Browse files Browse the repository at this point in the history
Fix #57: Change ARCHS from $ARCHS_STANDARD_64_BIT to $ARCHS_STANDARD, except on the Mac.
  • Loading branch information
boredzo committed Oct 26, 2015
2 parents 12d75ec + bb6c602 commit 43210ea
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ISO8601ForCocoa/ISO8601ForCocoa.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,8 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
ARCHS = "$(ARCHS_STANDARD)";
"ARCHS[sdk=macosx*]" = "$(ARCHS_STANDARD_64_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = YES;
Expand Down Expand Up @@ -746,7 +747,8 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
ARCHS = "$(ARCHS_STANDARD)";
"ARCHS[sdk=macosx*]" = "$(ARCHS_STANDARD_64_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_OBJC_ARC = YES;
Expand Down

0 comments on commit 43210ea

Please sign in to comment.