On Wed, Mar 7, 2012 at 9:58 PM, Andrew Cherednik <[email protected]> wrote: > Hi guys, > > > > Decided to open a discussion on SQLite amalgamation. Please forgive us, > Windows users, who unlucky enough to use Microsoft Visual Studio. As many of > you know, it is year 2012 now, and Visual Studio is up to version 10, but the > guys at Microsoft still use 16-bit indices for the debugger. As a result, the > source files with the line count greater than 65535 cannot be debugged. > > > > It is very annoying, and we, Windows users, should use a non-recommended > source for SQLite in our projects. > > > > Can you guys create a version with source split into files with each of them > not greater than 65535 lines (call it as you like, VC special version, > semi-amalgamated, etc.), but without the words "not recommended". > > >
The compile will take longer, but using the non-amalgamation source with LTO turned on will give the same effect as the amalgamation. (ie. faster and smaller code) -- Cory Nelson http://int64.org _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

