> On Nov 10, 2014, at 9:31 AM, Richard Hipp <d...@sqlite.org> wrote:
> 
> On Mon, Nov 10, 2014 at 12:28 PM, Ward Willats <sqlite-us...@wardco.com>
> wrote:
> 
>> 
>>> On Nov 10, 2014, at 3:11 AM, Richard Hipp <d...@sqlite.org> wrote:
>>> 
>>> If you recompile the SQLite command-line shell (sqlite3.exe) using the
>>> -DSQLITE_ENABLE_SELECTTRACE option, then you can enter:
>>> 
>> 
>> If I do that,
>> 
>>   gcc -D SQLITE_ENABLE_SELECTTRACE -D HAVE_READLINE -l readline -o
>> sqlite3 sqlite3.c shell.c
>> 
>> sqlite3DebugPrintf and sqlite3TreeViewSelect are undefined at link time.
>> 
>> Must other switches be thrown?
>> 
> 
> Try adding -DSQLITE_DEBUG
> 

gcc -D SQLITE_DEBUG -D SQLITE_ENABLE_SELECTTRACE -D HAVE_READLINE -l readline 
-o sqlite3 sqlite3.c shell.c

Yes, that does it. Thanks.

-- Ward

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to