Build rustc prefix when aarch64 target is used

This commit is contained in:
Jeremy Soller 2019-03-30 14:08:57 -06:00
parent 6f6de7507b
commit 41a7749c3e

View file

@ -6,7 +6,12 @@ INSTALLER_FLAGS?=--cookbook=cookbook
## Enabled to use binary prefix (much faster)
PREFIX_BINARY?=1
## Enabled to build custom rustc
ifeq ($(ARCH),aarch64)
# aarch64 requires rustc prefix
PREFIX_RUSTC?=1
else
PREFIX_RUSTC?=0
endif
## Filesystem size in MB (256 is the default)
FILESYSTEM_SIZE?=256