From 68354c7d41085d1f976a5b1d7ee542479a85f621 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 13 Feb 2010 09:56:58 +0100 Subject: imported trunk from sourceforge SVN --- INSTALL | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 INSTALL (limited to 'INSTALL') diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..fbae3e8 --- /dev/null +++ b/INSTALL @@ -0,0 +1,45 @@ +Unix Build Instructions +----------------------- + +make +make test +make install + +Using the Intel Compiler instead of the GNU gcc +----------------------------------------------- + +For example on a 64-bit platform: + +. /opt/intel/Compiler/11.0/083/bin/iccvars.sh intel64 +make CC=icc CCPP=icc +make CC=icc CCPP=icc test +make CC=icc CCPP=icc install + +Using the Sun Studio 12 Forte Compiler +-------------------------------------- + +make CC=/opt/SUNWspro/bin/cc CCPP=/opt/SUNWspro/bin/CC +make CC=/opt/SUNWspro/bin/cc CCPP=/opt/SUNWspro/bin/CC test +make CC=/opt/SUNWspro/bin/cc CCPP=/opt/SUNWspro/bin/CC install + +Windows Build Instructions +-------------------------- + +Use the Microsoft Visual Studio Command Line. + +There is an unpacked minimal version ov sqlite-amalgamation-3_x_x.zip +installed in the sqlite-3.x.x subdirectory. Adapt the makefiles if +you want to link against a sqlite3.dll already installed on the system +or if you want to use a different version of sqlite. + +Build using the following sequence: + +nmake /nologo /f Makefile.W32 +nmake /nologo /f Makefile.W32 test + +The resulting header files and development library are +in 'include\sqlite3xx` and 'src\sqlite3xx.lib` + +At the moment there is no packaging or DLL building. +Also the Windows build can't use the binary DLL versions +of sqlite3.dll yet without adapting the makefiles. -- cgit v1.2.3-54-g00ecf