diff --git a/cmake/ci/Makefile b/cmake/ci/Makefile index be88f82..966226f 100644 --- a/cmake/ci/Makefile +++ b/cmake/ci/Makefile @@ -39,13 +39,16 @@ help: @echo -e "\t${BOLD}clean__${RESET}: Remove cache and docker image." @echo @echo -e "\tWith ${BOLD}${RESET}:" - @echo -e "\t\t${BOLD}aarch64${RESET} (bootlin toolchain)" - @echo -e "\t\t${BOLD}aarch64be${RESET} (bootlin toolchain)" + @echo -e "\t\t${BOLD}armv7-eabihf(arm)${RESET} (bootlin toolchain)" + @echo -e "\t\t${BOLD}armebv7-eabihf(armeb)${RESET} (bootlin toolchain)" + @echo -e "\t\t${BOLD}aarch64(arm64)${RESET} (bootlin toolchain)" + @echo -e "\t\t${BOLD}aarch64be(arm64be)${RESET} (bootlin toolchain)" @echo -e "\t\t${BOLD}mips32${RESET} (codespace toolchain)" @echo -e "\t\t${BOLD}mips64${RESET} (codespace toolchain)" @echo -e "\t\t${BOLD}mips32el${RESET} (codespace toolchain)" @echo -e "\t\t${BOLD}mips64el${RESET} (codespace toolchain)" - @echo -e "\t\t${BOLD}ppc${RESET} (bootlin toolchain)" + @echo -e "\t\t${BOLD}ppc-440fp(ppc)${RESET} (bootlin toolchain)" + @echo -e "\t\t${BOLD}ppc-e500mc${RESET} (bootlin toolchain)" @echo -e "\t\t${BOLD}ppc64${RESET} (bootlin toolchain)" @echo -e "\t\t${BOLD}ppc64le${RESET} (bootlin toolchain)" @echo -e "\t\t${BOLD}riscv32${RESET} (bootlin toolchain)" @@ -144,6 +147,9 @@ $(clean_targets_amd64): clean_amd64_%: ## TOOLCHAIN ## ############### TOOLCHAIN_TARGETS = \ + arm armeb \ + armv7-eabihf armebv7-eabihf \ + arm64 arm64be \ aarch64 aarch64be \ mips32 mips32el mips64 mips64el \ ppc ppc-440fp ppc-e500mc \