Re: [sqlite] Which VC6 options to use for fastest sqlite3?

2006-01-10 Thread Michael Sizaki
/MD /W3 /GX /O2 /Ob2 /D "NDEBUG" /D "WIN32" /D "_LIB" /D "_AFXDLL" /Fp"Release/LibSqlite3.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c Thx! Since SQLite seems to be I/O bound, I'm not sure the compiler matters that much. What I find is that performance on SCSI equipped machines is far

Re: [sqlite] Which VC6 options to use for fastest sqlite3?

2006-01-09 Thread Teg
Hello Michael, I use these. I generate a library and statically link the library into the program. /MD /W3 /GX /O2 /Ob2 /D "NDEBUG" /D "WIN32" /D "_LIB" /D "_AFXDLL" /Fp"Release/LibSqlite3.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c Since SQLite seems to be I/O bound, I'm not sure the compiler

RE: [sqlite] Which VC6 options to use for fastest sqlite3?

2006-01-09 Thread Preston Z
since you have /MT i am assuming you will need /D "THREADSAFE". If you are used to MSVC and want to try another compiler i would suggest grabbing http://www.codeblocks.org, it is an IDE and you can import you MSVC project into it and compile with the MinGW/gcc compiler, which it will set up for