1
0

README 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. This package contains:
  2. * the SQLite library amalgamation (single file) source code distribution,
  3. * the shell.c file used to build the sqlite3 shell too, and
  4. * the sqlite3.h and sqlite3ext.h header files required to link programs
  5. and sqlite extensions against the installed libary.
  6. * autoconf/automake installation infrastucture.
  7. The generic installation instructions for autoconf/automake are found
  8. in the INSTALL file.
  9. The following SQLite specific boolean options are supported:
  10. --enable-readline use readline in shell tool [default=yes]
  11. --enable-threadsafe build a thread-safe library [default=yes]
  12. --enable-dynamic-extensions support loadable extensions [default=yes]
  13. The default value for the CFLAGS variable (options passed to the C
  14. compiler) includes debugging symbols in the build, resulting in larger
  15. binaries than are necessary. Override it on the configure command
  16. line like this:
  17. $ CFLAGS="-Os" ./configure
  18. to produce a smaller installation footprint.
  19. Other SQLite compilation parameters can also be set using CFLAGS. For
  20. example:
  21. $ CFLAGS="-Os -DSQLITE_OMIT_TRIGGERS" ./configure