WPFAbsoluteNewBie
WPFAbsoluteNewBie

Reputation: 1375

Compiling 64 bit sqlite for windows and linux

There is no 64bit version of Sqlite available for either linux or windows from http://sqlite.org/download.html.

How to compile the sqlite library for 64 bit OS? and how do you ensure that the generated code will pass all the tests that are performed on a release build of Sqlite. i.e. http://www.sqlite.org/testing.html

How to ensure that there are no compiler introduced errors in the generated code?

Upvotes: 0

Views: 1350

Answers (1)

Xiaobo Gu
Xiaobo Gu

Reputation: 189

You can try this on UNIX and LINUX systems, I'll test this to see whether it really makes a 64bit sqlite3

CPPFLAGS=-m64 ./configure make make install

Upvotes: 1

Related Questions