From 7946be5802c626454d18fe8511ae6fa56ffaa05d Mon Sep 17 00:00:00 2001 From: Christopher Pickslay Date: Wed, 18 Apr 2012 10:15:26 -0700 Subject: [PATCH 1/2] updated base SDK to 5.0 for Xcode 4.3 compatibility --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index aed3b12..9ead86d 100644 --- a/Rakefile +++ b/Rakefile @@ -51,7 +51,7 @@ namespace :build do CONFIG = "Release" LIB_NAME = "libLRResty.a" BUILD_DIR = "build" - BASE_SDK = 4.3 + BASE_SDK = 5.0 PACKAGE_SUFFIX = ENV["PACKAGE_SUFFIX"] || RESTY_VERSION desc "Build the static library for the simulator platform" From 0ad6fe79f29f0482429ea4d8ec585f8e5a9e6ae6 Mon Sep 17 00:00:00 2001 From: Christopher Pickslay Date: Wed, 18 Apr 2012 10:15:40 -0700 Subject: [PATCH 2/2] added support for armv6 --- LRResty.xcodeproj/project.pbxproj | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/LRResty.xcodeproj/project.pbxproj b/LRResty.xcodeproj/project.pbxproj index 77f46bf..d44984e 100644 --- a/LRResty.xcodeproj/project.pbxproj +++ b/LRResty.xcodeproj/project.pbxproj @@ -1444,7 +1444,10 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + ARCHS = ( + armv6, + armv7, + ); COPY_PHASE_STRIP = NO; DSTROOT = /tmp/LRResty.dst; GCC_DYNAMIC_NO_PIC = NO; @@ -1466,7 +1469,10 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + ARCHS = ( + armv6, + armv7, + ); DSTROOT = /tmp/LRResty.dst; GCC_MODEL_TUNING = G5; GCC_PRECOMPILE_PREFIX_HEADER = YES;