profiles: Disable arm64 support in QEMU and Rust

Since the kernel is no longer buildable for arm64, disable the QEMU
targets that were used by dracut to create the arm64 initramfs.
Also disable LLVM's arm64 support to speed up SDK Rust builds.
This commit is contained in:
David Michael 2018-08-24 17:22:12 +00:00
parent 946cb147db
commit 3c0046759e

View File

@ -8,13 +8,10 @@ CROS_SDK_HOST="cros-sdk-host"
GRUB_PLATFORMS="efi-64 pc xen"
# Enable CPU architectures needed by Rust builds
LLVM_TARGETS="X86 AArch64"
LLVM_TARGETS="X86"
# Both x86_64 and i386 targets are required for grub testing
QEMU_SOFTMMU_TARGETS="x86_64 i386 aarch64"
# For cross build support.
QEMU_USER_TARGETS="aarch64"
QEMU_SOFTMMU_TARGETS="x86_64 i386"
# Disable ccache in the SDK so it stops randomly breaking catalyst.
FEATURES="-ccache"