Skip to content

Instantly share code, notes, and snippets.

@michaelcontento
Created August 10, 2012 21:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelcontento/3318328 to your computer and use it in GitHub Desktop.
Save michaelcontento/3318328 to your computer and use it in GitHub Desktop.
Monkey iOS armv6 patch
diff --git targets/ios/MonkeyGame.xcodeproj/project.pbxproj targets/ios/MonkeyGame.xcodeproj/project.pbxproj
index 0f6b73a..663d6e6 100755
--- targets/ios/MonkeyGame.xcodeproj/project.pbxproj
+++ targets/ios/MonkeyGame.xcodeproj/project.pbxproj
@@ -209,7 +209,10 @@
C01FCF4F08A954540054247B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ARCHS = "$(ARCHS_UNIVERSAL_IPHONE_OS)";
+ ARCHS = (
+ "$(ARCHS_UNIVERSAL_IPHONE_OS)",
+ armv6,
+ );
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_THUMB_SUPPORT = NO;
@@ -226,7 +229,10 @@
C01FCF5008A954540054247B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ARCHS = "$(ARCHS_UNIVERSAL_IPHONE_OS)";
+ ARCHS = (
+ "$(ARCHS_UNIVERSAL_IPHONE_OS)",
+ armv6,
+ );
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_THUMB_SUPPORT = NO;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment