termux_step_configure_meson: Allow for debug build

This commit is contained in:
Tee KOBAYASHI 2023-01-20 08:53:34 +09:00 committed by xtkoba
parent 67ad5da810
commit ab156e29d5
1 changed files with 10 additions and 2 deletions

View File

@ -1,13 +1,21 @@
termux_step_configure_meson() {
termux_setup_meson
local _meson_buildtype="minsize"
local _meson_stripflag="--strip"
if [ "$TERMUX_DEBUG_BUILD" = "true" ]; then
_meson_buildtype="debug"
_meson_stripflag=
fi
CC=gcc CXX=g++ CFLAGS= CXXFLAGS= CPPFLAGS= LDFLAGS= $TERMUX_MESON \
$TERMUX_PKG_SRCDIR \
$TERMUX_PKG_BUILDDIR \
--cross-file $TERMUX_MESON_CROSSFILE \
--prefix $TERMUX_PREFIX \
--libdir lib \
--buildtype minsize \
--strip \
--buildtype ${_meson_buildtype} \
${_meson_stripflag} \
$TERMUX_PKG_EXTRA_CONFIGURE_ARGS \
|| (termux_step_configure_meson_failure_hook && false)
}