Skip to content

Commit

Permalink
explicitly enable armv6 since Xcode 4.2 doesn't default this anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
steipete committed Oct 7, 2011
1 parent f7e5906 commit 5c1805e
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions PSFoundation.xcodeproj/project.pbxproj
Expand Up @@ -2577,7 +2577,10 @@
1DEB922308733DC00010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
ARCHS = (
armv7,
armv6,
);
GCC_C_LANGUAGE_STANDARD = c99;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = DEBUG;
Expand All @@ -2598,7 +2601,10 @@
1DEB922408733DC00010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
ARCHS = (
armv7,
armv6,
);
GCC_C_LANGUAGE_STANDARD = c99;
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
Expand Down Expand Up @@ -2655,7 +2661,10 @@
786274B41292DBB8002D08A6 /* AppStore */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
ARCHS = (
armv7,
armv6,
);
GCC_C_LANGUAGE_STANDARD = c99;
GCC_PREPROCESSOR_DEFINITIONS = APPSTORE;
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
Expand Down Expand Up @@ -2685,7 +2694,6 @@
786274B61292DBB8002D08A6 /* AppStore */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
DSTROOT = /tmp/PSFoundation.dst;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
Expand Down Expand Up @@ -2903,7 +2911,6 @@
788E1F35126C95B1009801E5 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
COPY_PHASE_STRIP = NO;
DSTROOT = /tmp/PSFoundation.dst;
GCC_DYNAMIC_NO_PIC = NO;
Expand All @@ -2925,7 +2932,6 @@
788E1F36126C95B1009801E5 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
DSTROOT = /tmp/PSFoundation.dst;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
Expand All @@ -2944,7 +2950,6 @@
788E1F37126C95B1009801E5 /* Distribution */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
DSTROOT = /tmp/PSFoundation.dst;
GCC_MODEL_TUNING = G5;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
Expand All @@ -2963,7 +2968,10 @@
78A45B76126BB68900327105 /* Distribution */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
ARCHS = (
armv7,
armv6,
);
GCC_C_LANGUAGE_STANDARD = c99;
GCC_PREPROCESSOR_DEFINITIONS = DISTRIBUTION;
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
Expand Down

0 comments on commit 5c1805e

Please sign in to comment.