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:
parent
9daf6e9f50
commit
187411e25f
@ -6,6 +6,11 @@ if test $# = 0; then
|
|||||||
which_config=plugins
|
which_config=plugins
|
||||||
else
|
else
|
||||||
which_config=$1
|
which_config=$1
|
||||||
|
if test $# = 2; then
|
||||||
|
if test $2 = debugger; then
|
||||||
|
CONFIGURE_ARGS=--enable-debugger
|
||||||
|
fi
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CC="gcc"
|
CC="gcc"
|
||||||
|
Loading…
Reference in New Issue
Block a user