In shortcut script .conf.linux added support for enabling debugger.

The debugger now can be enabled without setting CONFIGURE_ARGS.
To turn it on use

./.conf.linux normal debugger

or

./.conf.linux plugins debugger
This commit is contained in:
Volker Ruppert 2024-03-25 19:50:06 +01:00
parent 9daf6e9f50
commit 187411e25f

View File

@ -6,6 +6,11 @@ if test $# = 0; then
which_config=plugins
else
which_config=$1
if test $# = 2; then
if test $2 = debugger; then
CONFIGURE_ARGS=--enable-debugger
fi
fi
fi
CC="gcc"