Jakub Ladman <[EMAIL PROTECTED]> wrote: > Hi everybody > Which files do i need at target (small embedded linux system)? >
I think the easiest way to build on a (possibly strange) target embedded system is to do this on your development platform: make target_source That make target creates a directory called "tsrc" and fills it will all the preprocessed source files and headers you will need to build the actual library. From these preprocessed files, you might want to remove tclsqlite.c (if you do not want the TCL interface) or fts* if you don't care about full-text search or shell.c if you don't want the shell command. Once you've removed these extra files, build the shared library for you target system like this: cross-cc -o libsqlite3-cross.so -shared *.c If you are really ambitious, you might want to add a few -DSQLITE_... argments to the command-line above to turn off unwanted features or turn on optional features or whatever. -- D. Richard Hipp <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------