SQLite Forum

Using SQLITE_OMIT_xxx in SQLite 3.36
Login
**Other 'anonymous' than OP**

I ran into supersized executables and libraries on Android, Mint and Windows.

You should check the makefile generated by configure first. Look for the following lines:

`BCC = gcc  -g -O2`

`CFLAGS =   -g -O2`

Help for GCC says *"-g --gen-debug          generate debugging information"*; removing **-g** from these lines solved my supersized problem (with all extras included from 6MB+ to barely 1MB).

As for the *SQLITE_OMIT* options? I don't know, but if removing *-g* works it might not even be worth bothering.