cspec: enable preprocess test for AArch64

This commit adds compiler prefixes for AArch64 so that the preprocess
test finds the right cross compilers for this architecture.

Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
This commit is contained in:
Gerwin Klein 2022-02-03 13:22:01 +11:00 committed by Gerwin Klein
parent c4fe1abb3d
commit 04626b0a88
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ ifndef TOOLPREFIX
TRY_TOOLPREFIX := arm-none-eabi- arm-linux-gnueabi-
else ifeq (${L4V_ARCH},RISCV64)
TRY_TOOLPREFIX := riscv64-unknown-linux-gnu- riscv64-linux-gnu- riscv64-unknown-elf-
else ifeq (${L4V_ARCH},AARCH64)
TRY_TOOLPREFIX := aarch64-unknown-linux-gnu- aarch64-linux-gnu-
endif
endif
ifdef TRY_TOOLPREFIX