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
These are true for most modern (g)libc systems. If you build from the un-amalgamated source, these are set by the configure script, but if you use sqlite3.c (like here), some are guessed, some are not (and built-in, slower implementations are substituted -- for example, osLocalTime() will lock a mutex and call localtime() if HAVE_LOCALTIME_R is not defined).
The text was updated successfully, but these errors were encountered:
Some of the others look reasonable, but I need to confirm what the values should be on different OSs. E.g. should macOS use HAVE_FDATASYNC? A quick run of the sqlite configure script should answer it.
You might want to add the following HAVE_* defines in sqlite.go:
These are true for most modern (g)libc systems. If you build from the un-amalgamated source, these are set by the
configure
script, but if you use sqlite3.c (like here), some are guessed, some are not (and built-in, slower implementations are substituted -- for example, osLocalTime() will lock a mutex and call localtime() if HAVE_LOCALTIME_R is not defined).The text was updated successfully, but these errors were encountered: