You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-26Lines changed: 26 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -97,31 +97,31 @@ The built-in OSX/iOS version of SQLite were built with the following compilation
97
97
> Fetched using `PRAGMA compile_options;`
98
98
99
99
- MacOSX (10.11.5)
100
-
- ENABLE_API_ARMOR
101
-
- ENABLE_FTS3
102
-
- ENABLE_FTS3_PARENTHESIS
103
-
- ENABLE_LOCKING_STYLE=1
104
-
- ENABLE_RTREE
105
-
- ENABLE_UPDATE_DELETE_LIMIT
106
-
- OMIT_AUTORESET
107
-
- OMIT_BUILTIN_TEST
108
-
- OMIT_LOAD_EXTENSION
109
-
- SYSTEM_MALLOC
110
-
- THREADSAFE=2
100
+
-`ENABLE_API_ARMOR`
101
+
-`ENABLE_FTS3`
102
+
-`ENABLE_FTS3_PARENTHESIS`
103
+
-`ENABLE_LOCKING_STYLE=1`
104
+
-`ENABLE_RTREE`
105
+
-`ENABLE_UPDATE_DELETE_LIMIT`
106
+
-`OMIT_AUTORESET`
107
+
-`OMIT_BUILTIN_TEST`
108
+
-`OMIT_LOAD_EXTENSION`
109
+
-`SYSTEM_MALLOC`
110
+
-`THREADSAFE=2`
111
111
112
112
- iPhoneOS (9.3.2)
113
-
- ENABLE_API_ARMOR
114
-
- ENABLE_FTS3
115
-
- ENABLE_FTS3_PARENTHESIS
116
-
- ENABLE_LOCKING_STYLE=1
117
-
- ENABLE_RTREE
118
-
- ENABLE_UPDATE_DELETE_LIMIT
119
-
- MAX_MMAP_SIZE=0
120
-
- OMIT_AUTORESET
121
-
- OMIT_BUILTIN_TEST
122
-
- OMIT_LOAD_EXTENSION
123
-
- SYSTEM_MALLOC
124
-
- THREADSAFE=2
113
+
-`ENABLE_API_ARMOR`
114
+
-`ENABLE_FTS3`
115
+
-`ENABLE_FTS3_PARENTHESIS`
116
+
-`ENABLE_LOCKING_STYLE=1`
117
+
-`ENABLE_RTREE`
118
+
-`ENABLE_UPDATE_DELETE_LIMIT`
119
+
-`MAX_MMAP_SIZE=0`
120
+
-`OMIT_AUTORESET`
121
+
-`OMIT_BUILTIN_TEST`
122
+
-`OMIT_LOAD_EXTENSION`
123
+
-`SYSTEM_MALLOC`
124
+
-`THREADSAFE=2`
125
125
126
126
SQLiteLib uses these settings with one exception - on iOS:
127
127
@@ -135,15 +135,15 @@ D. Richard Hipp (SQLite architect), suggests working around this on iOS using `-
135
135
>
136
136
> I'm guessing this is not really a factor on iOS."
137
137
138
-
Thus, SQLiteLib uses SQLITE_ENABLE_LOCKING_STYLE=1 on OSX,
139
-
**but on iOS, SQLiteLib compiles with ENABLE_LOCKING_STYLE=0**.
138
+
Thus, SQLiteLib uses `SQLITE_ENABLE_LOCKING_STYLE=1` on OSX,
139
+
**but on iOS, SQLiteLib compiles with `ENABLE_LOCKING_STYLE=0`**.
140
140
141
141
This removes the code that uses the deprecated function, but doesn't get rid of the warning that "`gethostuuid() is disabled`" (as of 3.13.0).
142
142
143
143
To prevent this warning, SQLiteLib separately specifies `-Wno-#warnings` when building for iOS.
144
144
145
145
All of these base settings are configured in the SQLiteLib.xcconfig file.
146
-
It is strongly recommended that you do not edit this file. If you'd like to specify additional compilation options, see [the instructions above](#specifying-additional-sqlite-compilation-options)
146
+
It is strongly recommended that you do not edit this file. If you'd like to specify additional compilation options, see [the instructions above](#specifying-additional-sqlite-compilation-options).
0 commit comments