README 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. This is the SQLite extension for Tcl using the Tcl Extension
  2. Architecture (TEA). For additional information on SQLite see
  3. http://www.sqlite.org/
  4. UNIX BUILD
  5. ==========
  6. Building under most UNIX systems is easy, just run the configure script
  7. and then run make. For more information about the build process, see
  8. the tcl/unix/README file in the Tcl src dist. The following minimal
  9. example will install the extension in the /opt/tcl directory.
  10. $ cd sqlite-*-tea
  11. $ ./configure --prefix=/opt/tcl
  12. $ make
  13. $ make install
  14. WINDOWS BUILD
  15. =============
  16. The recommended method to build extensions under windows is to use the
  17. Msys + Mingw build process. This provides a Unix-style build while
  18. generating native Windows binaries. Using the Msys + Mingw build tools
  19. means that you can use the same configure script as per the Unix build
  20. to create a Makefile. See the tcl/win/README file for the URL of
  21. the Msys + Mingw download.
  22. If you have VC++ then you may wish to use the files in the win
  23. subdirectory and build the extension using just VC++. These files have
  24. been designed to be as generic as possible but will require some
  25. additional maintenance by the project developer to synchronise with
  26. the TEA configure.in and Makefile.in files. Instructions for using the
  27. VC++ makefile are written in the first part of the Makefile.vc
  28. file.