8000 adjust to support simulator (i386) builds on x86_64 kernel os x lion … · githubzhaoliang/sqlcipher@22e0566 · GitHub
[go: up one dir, main page]

Skip to content

Commit 22e0566

Browse files
committed
adjust to support simulator (i386) builds on x86_64 kernel os x lion for xcode 4.1
1 parent 4280b29 commit 22e0566

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

sqlcipher.xcodeproj/project.pbxproj

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,14 @@
231231
1DEB91F008733DB70010E9CD /* Debug */ = {
232232
isa = XCBuildConfiguration;
233233
buildSettings = {
234-
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
235234
"ARCHS[sdk=iphoneos*]" = (
236235
armv6,
237236
armv7,
238237
);
239-
"ARCHS[sdk=macosx*]" = "$(ARCHS_STANDARD_32_64_BIT)";
238+
"ARCHS[sdk=macosx*]" = (
239+
x86_64,
240+
i386,
241+
);
240242
GCC_C_LANGUAGE_STANDARD = c99;
241243
GCC_OPTIMIZATION_LEVEL = 0;
242244
GCC_WARN_ABOUT_RETURN_TYPE = YES;
@@ -252,12 +254,15 @@
252254
1DEB91F108733DB70010E9CD /* Release */ = {
253255
isa = XCBuildConfiguration;
254256
buildSettings = {
255-
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
257+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
256258
"ARCHS[sdk=iphoneos*]" = (
257259
armv6,
258260
armv7,
259261
);
260-
"ARCHS[sdk=macosx*]" = "$(ARCHS_STANDARD_32_64_BIT)";
262+
"ARCHS[sdk=macosx*]" = (
263+
x86_64,
264+
i386,
265+
);
261266
GCC_C_LANGUAGE_STANDARD = c99;
262267
GCC_WARN_ABOUT_RETURN_TYPE = YES;
263268
GCC_WARN_UNUSED_VARIABLE = YES;

0 commit comments

Comments
 (0)
0