From 04626b0a88af5148f5b4c3a7f26f96adf94f20f8 Mon Sep 17 00:00:00 2001 From: Gerwin Klein Date: Thu, 3 Feb 2022 13:22:01 +1100 Subject: [PATCH] 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 --- spec/cspec/c/kernel.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spec/cspec/c/kernel.mk b/spec/cspec/c/kernel.mk index b300b7abc..caf79ecc1 100644 --- a/spec/cspec/c/kernel.mk +++ b/spec/cspec/c/kernel.mk @@ -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