I\'m trying to compile the SQLite amalgamation source into my iPhone app (to give me access to the full-text searching functionality that isn\'t available in the iPhone-comp
Try it with this steps:
That type of error usually means a missing framework.
That should take care of it, I think. You may need to add a similar library for running on the iPhone Simulator.
I've managed to do this using the amalgamation and dumped it straight into my project without having to do the linking catlan suggested (I'm not saying it's a bad idea, merely it's possible to do in the main project).
I didn't need to edit anything (except for adding the necessary FTS define for the text searching) and compiled error free. Check your build settings and ensure '-sqlite3' isn't in your Other Linking Flags.