Build rustc prefix when aarch64 target is used
This commit is contained in:
parent
6f6de7507b
commit
41a7749c3e
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue