-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
pod 'SQLite.swift/standalone' doesn't build any more #1015
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Just for funsies I hacked in the fix and changed Connection.swift:590 to flags |= sqlite3.SQLITE_DETERMINISTIC, But then when you add pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled to the Podfile a bunch more issues arise (of the exact same nature) |
I have found a temporary solution. My podfile now:
So, u have to install version from master. |
@stephencelis - Hope this message finds you well! You're probably scrambling with supporting the new iOS 14 release and cramped for time. I know I am haha. Anyway, wanted to call your attention to this post where it looks like the fix for supporting Xcode 12 is already in master. Would it be possible to cut a release? Thanks for considering! Maybe #1006 would also fix the root issue? @Pulichev - Appreciate letting us know of a workaround, this worked for me, thank you! |
Closing as it was fixed |
Build Information
General guidelines
> 0.12.2' then I can build the project, however, if I use pod 'SQLite.swift/standalone', '> 0.12.2' then the project won't build due to errors like: "Ambiguous use of 'SQLITE_DETERMINISTIC'"Sadly this means I can't use FTS or anything since the non-standalone version isn't compatible.
Create a new xcode project,
Use this podfile:
use_frameworks!
workspace 'targetname'
target 'targetname' do
pod 'SQLite.swift/standalone', '~> 0.12.2'
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
end
The text was updated successfully, but these errors were encountered: