build.sh: add compile/recopile to docs

windows-drag
Doug Coleman 2019-03-08 21:35:53 -06:00
parent d6c3cff581
commit 5048c39e0f
1 changed files with 3 additions and 0 deletions

View File

@ -729,6 +729,8 @@ usage() {
$ECHO " self-update - git pull, recompile, make local boot image, bootstrap" $ECHO " self-update - git pull, recompile, make local boot image, bootstrap"
$ECHO " quick-update - git pull, refresh-all, save" $ECHO " quick-update - git pull, refresh-all, save"
$ECHO " update|latest - git pull, recompile, download a boot image, bootstrap" $ECHO " update|latest - git pull, recompile, download a boot image, bootstrap"
$ECHO " compile - compile the binary"
$ECHO " recompile - recompile the binary"
$ECHO " bootstrap - bootstrap with existing boot image" $ECHO " bootstrap - bootstrap with existing boot image"
$ECHO " net-bootstrap - recompile, download a boot image, bootstrap" $ECHO " net-bootstrap - recompile, download a boot image, bootstrap"
$ECHO " make-target - find and print the os-arch-cpu string" $ECHO " make-target - find and print the os-arch-cpu string"
@ -770,6 +772,7 @@ case "$1" in
quick-update) update; refresh_image ;; quick-update) update; refresh_image ;;
update|latest) update; download_and_bootstrap ;; update|latest) update; download_and_bootstrap ;;
compile) find_build_info; make_factor ;; compile) find_build_info; make_factor ;;
recompile) find_build_info; make_clean; make_factor ;;
bootstrap) get_config_info; bootstrap ;; bootstrap) get_config_info; bootstrap ;;
net-bootstrap) net_bootstrap_no_pull ;; net-bootstrap) net_bootstrap_no_pull ;;
make-target) FIND_MAKE_TARGET=true; ECHO=false; find_build_info; exit_script ;; make-target) FIND_MAKE_TARGET=true; ECHO=false; find_build_info; exit_script ;;