Skip to content

Commit b87b12c

Browse files
authoredAug 14, 2017
Xcode 9 merge to master (#3043)
* A pretty breezy xcode9 upgrade. You can also enable the experimental compiler under project-settings->Build System * Xcode9: updates to readme
1 parent aa730ff commit b87b12c

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed
 

‎Client.xcodeproj/project.pbxproj

+4
Original file line numberDiff line numberDiff line change
@@ -6776,6 +6776,7 @@
67766776
);
67776777
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
67786778
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
6779+
LIBRARY_SEARCH_PATHS = "$(BUILD_DIR)/Release$(EFFECTIVE_PLATFORM_NAME)";
67796780
MOZ_INTERNAL_URL_SCHEME = "firefox-internal";
67806781
MTL_ENABLE_DEBUG_INFO = NO;
67816782
OTHER_LDFLAGS = (
@@ -7793,6 +7794,7 @@
77937794
);
77947795
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
77957796
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
7797+
LIBRARY_SEARCH_PATHS = "$(BUILD_DIR)/Release$(EFFECTIVE_PLATFORM_NAME)";
77967798
MOZ_INTERNAL_URL_SCHEME = fennec;
77977799
MTL_ENABLE_DEBUG_INFO = YES;
77987800
ONLY_ACTIVE_ARCH = YES;
@@ -8415,6 +8417,7 @@
84158417
);
84168418
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
84178419
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
8420+
LIBRARY_SEARCH_PATHS = "$(BUILD_DIR)/Release$(EFFECTIVE_PLATFORM_NAME)";
84188421
MOZ_INTERNAL_URL_SCHEME = "firefox-beta";
84198422
MTL_ENABLE_DEBUG_INFO = NO;
84208423
OTHER_LDFLAGS = (
@@ -8849,6 +8852,7 @@
88498852
);
88508853
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
88518854
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
8855+
LIBRARY_SEARCH_PATHS = "$(BUILD_DIR)/Release$(EFFECTIVE_PLATFORM_NAME)";
88528856
MOZ_INTERNAL_URL_SCHEME = fennec;
88538857
MTL_ENABLE_DEBUG_INFO = YES;
88548858
ONLY_ACTIVE_ARCH = YES;

‎README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ Firefox for iOS [![codebeat badge](https://codebeat.co/badges/67e58b6d-bc89-4f22
33

44
Download on the [App Store](https://itunes.apple.com/app/firefox-web-browser/id989804926).
55

6-
This branch
6+
This branch (master)
77
-----------
88

99
This branch is for mainline development that will ship in *v9.0*.
1010

11-
This branch only works with Xcode 8.3.2, and supports iOS 9.x and 10.
11+
This branch only works with Xcode 9 (currently in beta), and supports iOS 9.x, 10, and 11.
1212

1313
This branch is written in Swift 3.1.
1414

@@ -55,8 +55,6 @@ Building the code
5555
1. Open `Client.xcodeproj` in Xcode.
5656
1. Build the `Fennec` scheme in Xcode.
5757

58-
It is possible to use [App Code](https://www.jetbrains.com/objc/download/) instead of Xcode, but you will still require the Xcode developer tools.
59-
6058
## Contributor guidelines
6159

6260
### Creating a pull request

‎ThirdParty/SQLite.swift/Sources/SQLite/Core/Connection.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import sqlite3
2929
#elseif SQLITE_SWIFT_SQLCIPHER
3030
import SQLCipher
3131
#else
32-
import CSQLite
32+
import SQLite3
3333
#endif
3434

3535
/// A connection to SQLite.

‎ThirdParty/SQLite.swift/Sources/SQLite/Core/Statement.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import sqlite3
2727
#elseif SQLITE_SWIFT_SQLCIPHER
2828
import SQLCipher
2929
#else
30-
import CSQLite
30+
import SQLite3
3131
#endif
3232

3333
/// A single SQL statement.

‎ThirdParty/SQLite.swift/Sources/SQLite/Helpers.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import sqlite3
2727
#elseif SQLITE_SWIFT_SQLCIPHER
2828
import SQLCipher
2929
#else
30-
import CSQLite
30+
import SQLite3
3131
#endif
3232

3333
public typealias Star = (Expression<Binding>?, Expression<Binding>?) -> Expression<Void>

‎ThirdParty/SQLite.swift/Tests/SQLiteTests/ConnectionTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import sqlite3
66
#elseif SQLITE_SWIFT_SQLCIPHER
77
import SQLCipher
88
#else
9-
import CSQLite
9+
import SQLite3
1010
#endif
1111

1212
class ConnectionTests : SQLiteTestCase {

0 commit comments

Comments
 (0)
Please sign in to comment.