Skip to content
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

Add SQLite port (sqlite3) #17297

Merged
merged 8 commits into from
Jun 29, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update to 3.39, address review
  • Loading branch information
tiran committed Jun 29, 2022

Unverified

This user has not yet uploaded their public signing key.
commit dbe450683e12a6b3392eb65a7d0e434595102e20
7 changes: 3 additions & 4 deletions tools/ports/sqlite3.py
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@

# sqlite amalgamation download URL uses relase year and tag
# 2022 and (3, 38, 5) -> '/2022/sqlite-amalgamation-3380500.zip'
VERSION = (3, 38, 5)
VERSION = (3, 39, 0)
VERSION_YEAR = 2022
HASH = '4fc2992e4c1ca1664a9b01e07c9b944003c4ed0612978e471eff262a7114e4a0699244d91e71ae4ad2b5e1fc9829917cd7d5f0313aa5859036905f974548d94a'
HASH = 'cbaf4adb3e404d9aa403b34f133c5beca5f641ae1e23f84dbb021da1fb9efdc7c56b5922eb533ae5cb6d26410ac60cb3f026085591bc83ebc1c225aed0cf37ca'

deps = []

@@ -70,9 +70,8 @@ def create(final):
]
if settings.USE_PTHREADS:
flags += [
'-sUSE_PTHREADS=1',
'-sUSE_PTHREADS',
'-DSQLITE_THREADSAFE=1',
'-D_REENTRANT=1',
]
else:
flags += ['-DSQLITE_THREADSAFE=0']