Re: [sqlite] SQLITE_OMIT_xxx

2008-04-21 Thread Dimitri
Hi, Richard Klein wrote: > [...] > (2) Perforce (our version control software) has trouble diff'ing > two versions of a large file. We have the amalgamated sqlite3.c source file under Perforce control here and I don't recall any problems with diff, except I had to wait a bit longer than usual.

Re: [sqlite] SQLITE_OMIT_xxx

2008-04-21 Thread Mark Spiegel
Understood. I use the amalgamated source for maximum performance. Re 1: Look at Source Insight for editing. The only dig I have at it is that it won't let me split a window into the same source file like the VC editor will. Since I do all my building with command line tools, I don't need

Re: [sqlite] SQLITE_OMIT_xxx

2008-04-21 Thread D. Richard Hipp
On Apr 21, 2008, at 4:25 PM, Richard Klein wrote: > Thanks, Mark! > > I use the individual source files rather than the amalgamation, > for several reasons: To generate individual source files run make target_source > > > (1) Visual Studio has trouble generating line number info for >

Re: [sqlite] SQLITE_OMIT_xxx

2008-04-21 Thread Richard Klein
Thanks, Mark! I use the individual source files rather than the amalgamation, for several reasons: (1) Visual Studio has trouble generating line number info for files that have more than 64K lines. (2) Perforce (our version control software) has trouble diff'ing two versions of a large file.

Re: [sqlite] SQLITE_OMIT_xxx

2008-04-21 Thread Mark Spiegel
That's what I do. Once your makefile is set up, make the "sqlite3.c" target if you want an amalgamated source file. Be sure to carefully coordinate the defined values between the preprocessing step (to generate your source file(s)) and the build of your application/dll. If you are using

Re: [sqlite] SQLITE_OMIT_xxx

2008-04-21 Thread Richard Klein
> Richard Klein wrote: >> In order to reduce SQLite's memory footprint in my embedded >> application, I want to use the SQLITE_OMIT_xxx options to >> remove unneeded features from SQLite. >> >> Using Cygwin running on Windows, I have successfully down- >> loaded the canonical sources and

Re: [sqlite] SQLITE_OMIT_xxx

2008-04-21 Thread Dennis Cote
Richard Klein wrote: > In order to reduce SQLite's memory footprint in my embedded > application, I want to use the SQLITE_OMIT_xxx options to > remove unneeded features from SQLite. > > Using Cygwin running on Windows, I have successfully down- > loaded the canonical sources and autoconfigured