8000 adjusts sqlcipher.xcodeproj, attempting to switch to new standard arc… · magic-coder/sqlcipher@4093d93 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4093d93

Browse files
committed
adjusts sqlcipher.xcodeproj, attempting to switch to new standard archs including 64bit, but simulator still building i386
1 parent a28129e commit 4093d93

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

sqlcipher.xcodeproj/project.pbxproj

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
);
150150
runOnlyForDeploymentPostprocessing = 0;
151151
shellPath = /bin/sh;
152-
shellScript = "./configure --enable-tempstore=yes --with-crypto-lib=openssl CFLAGS=\"-DSQLITE_HAS_CODEC -DSQLITE_TEMP_STORE=2 -DSQLCIPHER_CRYPTO_OPENSSL\"\nmake sqlite3.c\nexit 0";
152+
shellScript = "./configure --enable-tempstore=yes --with-crypto-lib=commoncrypto CFLAGS=\"-DSQLITE_HAS_CODEC -DSQLITE_TEMP_STORE=2 -DSQLCIPHER_CRYPTO_CC\"\nmake sqlite3.c\nexit 0";
153153
};
154154
/* End PBXShellScriptBuildPhase section */
155155

@@ -228,7 +228,7 @@
228228
1DEB91F008733DB70010E9CD /* Debug */ = {
229229
isa = XCBuildConfiguration;
230230
buildSettings = {
231-
"ARCHS[sdk=iphoneos*]" = "$(ARCHS_STANDARD)";
231+
"ARCHS[sdk=iphoneos*]" = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
232232
"ARCHS[sdk=macosx*]" = (
233233
x86_64,
234234
i386,
@@ -247,12 +247,11 @@
247247
1DEB91F108733DB70010E9CD /* Release */ = {
248248
isa = XCBuildConfiguration;
249249
buildSettings = {
250-
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
251-
"ARCHS[sdk=iphoneos*]" = (
252-
armv7s,
253-
armv7,
250+
"ARCHS[sdk=iphoneos*]" = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
251+
"ARCHS[sdk=macosx*]" = (
252+
i386,
253+
x86_64,
254254
);
255-
"ARCHS[sdk=macosx*]" = "$(ARCHS_STANDARD)";
256255
GCC_C_LANGUAGE_STANDARD = c99;
257256
GCC_WARN_ABOUT_RETURN_TYPE = YES;
258257
GCC_WARN_UNUSED_VARIABLE = YES;

0 commit comments

Comments
 (0)
0