Add advanced build option to omit building plugins

Compiling the plugins takes quite a long time and is unnecessary
if you're only working on the core code. Having an option is nicer
than having to edit the configure script by hand.

Change-Id: I401867355d897ce3fd899d9daf25ea9afcc380f0
This commit is contained in:
Aidan MacDonald 2021-08-14 12:37:19 +01:00
parent cc6b036ef5
commit de578bde1f
1 changed files with 5 additions and 1 deletions

6
tools/configure vendored
View File

@ -935,7 +935,7 @@ whichadvanced () {
echo "" echo ""
printf "Enter your developer options (press only enter when done)\n\ printf "Enter your developer options (press only enter when done)\n\
(D)EBUG, (L)ogf, Boot(c)hart, (S)imulator, (P)rofiling, (V)oice, (U)SB Serial, (W)in32 crosscompile,\n\ (D)EBUG, (L)ogf, Boot(c)hart, (S)imulator, (P)rofiling, (V)oice, (U)SB Serial, (W)in32 crosscompile,\n\
Win(6)4 crosscompile, (T)est plugins, S(m)all C lib, Logf to Ser(i)al port:" Win(6)4 crosscompile, (T)est plugins, (O)mit plugins, S(m)all C lib, Logf to Ser(i)al port:"
if [ "$modelname" = "iaudiom5" ]; then if [ "$modelname" = "iaudiom5" ]; then
printf ", (F)M radio MOD" printf ", (F)M radio MOD"
fi fi
@ -975,6 +975,10 @@ Win(6)4 crosscompile, (T)est plugins, S(m)all C lib, Logf to Ser(i)al port:"
echo "Including test plugins" echo "Including test plugins"
extradefines="$extradefines -DHAVE_TEST_PLUGINS" extradefines="$extradefines -DHAVE_TEST_PLUGINS"
;; ;;
[Oo])
echo "Disabling building of plugins"
plugins="no"
;;
[Cc]) [Cc])
echo "bootchart enabled (logf also enabled)" echo "bootchart enabled (logf also enabled)"
bootchart="yes" bootchart="yes"