You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.6 KiB

  1. This directory contains source code to
  2. SQLite: An Embeddable SQL Database Engine
  3. To compile the project, first create a directory in which to place
  4. the build products. It is recommended, but not required, that the
  5. build directory be separate from the source directory. Cd into the
  6. build directory and then from the build directory run the configure
  7. script found at the root of the source tree. Then run "make".
  8. For example:
  9. tar xzf sqlite.tar.gz ;# Unpack the source tree into "sqlite"
  10. mkdir bld ;# Build will occur in a sibling directory
  11. cd bld ;# Change to the build directory
  12. ../sqlite/configure ;# Run the configure script
  13. make ;# Run the makefile.
  14. The configure script uses autoconf 2.50 and libtool. If the configure
  15. script does not work out for you, there is a generic makefile named
  16. "Makefile.linux-gcc" in the top directory of the source tree that you
  17. can copy and edit to suite your needs. Comments on the generic makefile
  18. show what changes are needed.
  19. The linux binaries on the website are created using the generic makefile,
  20. not the configure script. The configure script is unmaintained. (You
  21. can volunteer to take over maintenance of the configure script, if you want!)
  22. The windows binaries on the website are created using MinGW32 configured
  23. as a cross-compiler running under Linux. For details, see the ./publish.sh
  24. script at the top-level of the source tree.
  25. Contacts:
  26. http://www.sqlite.org/
  27. http://www.hwaci.com/sw/sqlite/
  28. http://groups.yahoo.com/group/sqlite/
  29. drh@hwaci.com