diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-01-25 12:25:27 +0000 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2024-01-25 12:25:27 +0000 |
commit | 5fb8f0f80fc41cc636da56864195244d8fd9116e (patch) | |
tree | f7e2af5505cc6613406999cdfc45c6b9b14b1b3b /depends/packages | |
parent | 2b0dd88f1ce9084324dc54db578fade9c926fd71 (diff) |
depends: Do not override CFLAGS when building SQLite with DEBUG=1
The `--enable-debug` configure option for the SQLite package does two
things. It adds three preprocessor definitions and overrides CFLAGS with
"-g -O0". The latter breaks the user's ability to provide sanitizer and
LTO flags.
Diffstat (limited to 'depends/packages')
-rw-r--r-- | depends/packages/sqlite.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/depends/packages/sqlite.mk b/depends/packages/sqlite.mk index d7ee1416cc..6809b39113 100644 --- a/depends/packages/sqlite.mk +++ b/depends/packages/sqlite.mk @@ -11,7 +11,9 @@ $(package)_config_opts_linux=--with-pic $(package)_config_opts_freebsd=--with-pic $(package)_config_opts_netbsd=--with-pic $(package)_config_opts_openbsd=--with-pic -$(package)_config_opts_debug=--enable-debug +# We avoid using `--enable-debug` because it overrides CFLAGS, a behavior we want to prevent. +$(package)_cflags_debug += -g +$(package)_cppflags_debug += -DSQLITE_DEBUG $(package)_cppflags+=-DSQLITE_DQS=0 -DSQLITE_DEFAULT_MEMSTATUS=0 -DSQLITE_OMIT_DEPRECATED $(package)_cppflags+=-DSQLITE_OMIT_SHARED_CACHE -DSQLITE_OMIT_JSON -DSQLITE_LIKE_DOESNT_MATCH_BLOBS $(package)_cppflags+=-DSQLITE_OMIT_DECLTYPE -DSQLITE_OMIT_PROGRESS_CALLBACK -DSQLITE_OMIT_AUTOINIT |