NameDateSize

..06-May-202087

aclocal.m4H A D03-Oct-2019364.2 KiB

compileH A D30-Aug-20167.2 KiB

config.guessH A D03-Oct-201943.2 KiB

config.subH A D03-Oct-201935.3 KiB

configureH A D07-Jun-2021470.4 KiB

configure.acH A D07-Jun-20219 KiB

depcompH A D03-Oct-201923 KiB

INSTALLH A D18-Aug-201615.4 KiB

install-shH A D03-Oct-201914.8 KiB

ltmain.shH A D07-Jun-2021316.8 KiB

Makefile.amH A D24-Sep-2020729

Makefile.fallbackH A D03-Oct-2019547

Makefile.inH A D24-Sep-202036.6 KiB

Makefile.mscH A D07-Jun-202128.3 KiB

missingH A D18-Aug-20166.7 KiB

README.txtH A D18-Aug-20163.5 KiB

Replace.csH A D30-Aug-20167.1 KiB

shell.cH A D07-Jun-2021645.5 KiB

sqlite3.1H A D18-Aug-20168.7 KiB

sqlite3.cH A D07-Jun-20217.9 MiB

sqlite3.hH A D07-Jun-2021570.5 KiB

sqlite3.pc.inH A D18-Aug-2016267

sqlite3.rcH A D30-Aug-20161.9 KiB

sqlite3ext.hH A D07-Jun-202134.6 KiB

sqlite3rc.hH A D07-Jun-202178

tea/H07-Jun-202113

README.txt

1This package contains:
2
3 * the SQLite library amalgamation source code file: sqlite3.c
4 * the sqlite3.h and sqlite3ext.h header files that define the C-language
5   interface to the sqlite3.c library file
6 * the shell.c file used to build the sqlite3 command-line shell program
7 * autoconf/automake installation infrastucture for building on POSIX
8   compliant systems
9 * a Makefile.msc, sqlite3.rc, and Replace.cs for building with Microsoft
10   Visual C++ on Windows
11
12SUMMARY OF HOW TO BUILD
13=======================
14
15  Unix:      ./configure; make
16  Windows:   nmake /f Makefile.msc
17
18BUILDING ON POSIX
19=================
20
21The generic installation instructions for autoconf/automake are found
22in the INSTALL file.
23
24The following SQLite specific boolean options are supported:
25
26  --enable-readline           use readline in shell tool   [default=yes]
27  --enable-threadsafe         build a thread-safe library  [default=yes]
28  --enable-dynamic-extensions support loadable extensions  [default=yes]
29
30The default value for the CFLAGS variable (options passed to the C
31compiler) includes debugging symbols in the build, resulting in larger
32binaries than are necessary. Override it on the configure command
33line like this:
34
35  $ CFLAGS="-Os" ./configure
36
37to produce a smaller installation footprint.
38
39Other SQLite compilation parameters can also be set using CFLAGS. For
40example:
41
42  $ CFLAGS="-Os -DSQLITE_THREADSAFE=0" ./configure
43
44
45BUILDING WITH MICROSOFT VISUAL C++
46==================================
47
48To compile for Windows using Microsoft Visual C++:
49
50  $ nmake /f Makefile.msc
51
52Using Microsoft Visual C++ 2005 (or later) is recommended.  Several Windows
53platform variants may be built by adding additional macros to the NMAKE
54command line.
55
56Building for WinRT 8.0
57----------------------
58
59  FOR_WINRT=1
60
61Using Microsoft Visual C++ 2012 (or later) is required.  When using the
62above, something like the following macro will need to be added to the
63NMAKE command line as well:
64
65  "NSDKLIBPATH=%WindowsSdkDir%\..\8.0\lib\win8\um\x86"
66
67Building for WinRT 8.1
68----------------------
69
70  FOR_WINRT=1
71
72Using Microsoft Visual C++ 2013 (or later) is required.  When using the
73above, something like the following macro will need to be added to the
74NMAKE command line as well:
75
76  "NSDKLIBPATH=%WindowsSdkDir%\..\8.1\lib\winv6.3\um\x86"
77
78Building for UWP 10.0
79---------------------
80
81  FOR_WINRT=1 FOR_UWP=1
82
83Using Microsoft Visual C++ 2015 (or later) is required.  When using the
84above, something like the following macros will need to be added to the
85NMAKE command line as well:
86
87  "NSDKLIBPATH=%WindowsSdkDir%\..\10\lib\10.0.10586.0\um\x86"
88  "PSDKLIBPATH=%WindowsSdkDir%\..\10\lib\10.0.10586.0\um\x86"
89  "NUCRTLIBPATH=%UniversalCRTSdkDir%\..\10\lib\10.0.10586.0\ucrt\x86"
90
91Building for the Windows 10 SDK
92-------------------------------
93
94  FOR_WIN10=1
95
96Using Microsoft Visual C++ 2015 (or later) is required.  When using the
97above, no other macros should be needed on the NMAKE command line.
98
99Other preprocessor defines
100--------------------------
101
102Additionally, preprocessor defines may be specified by using the OPTS macro
103on the NMAKE command line.  However, not all possible preprocessor defines
104may be specified in this manner as some require the amalgamation to be built
105with them enabled (see http://www.sqlite.org/compile.html). For example, the
106following will work:
107
108  "OPTS=-DSQLITE_ENABLE_STAT4=1 -DSQLITE_ENABLE_JSON1=1"
109
110However, the following will not compile unless the amalgamation was built
111with it enabled:
112
113  "OPTS=-DSQLITE_ENABLE_UPDATE_DELETE_LIMIT=1"
114