On 09/01/2020 17:47, Xingwei Lin wrote:
Hi,

How can I pass -Dxxx compile option when I build sqlite? Such as, -
DSQLITE_ENABLE_INTERNAL_FUNCTIONS.

./configure --help will tell you that CFLAGS is how you do that, so:

    ./configure CFLAGS=-Dwhatever

If you have many options:

    ./configure CFLAGS="-Dwhatever -Dthis -Dthat -mwhoops"

        Cheers,
                Gary    B-)
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to