From 086090046c98d31787af5e657ce0d4adbd5815f2 Mon Sep 17 00:00:00 2001 From: BradWalker Date: Sat, 25 May 2024 20:27:12 -0600 Subject: [PATCH] Allow the serv software Makefile to use a different compiler prefix if defined. --- sw/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/Makefile b/sw/Makefile index 9ff58a6..c97dba5 100644 --- a/sw/Makefile +++ b/sw/Makefile @@ -1,4 +1,4 @@ -TOOLCHAIN_PREFIX=riscv64-unknown-elf- +TOOLCHAIN_PREFIX?=riscv64-unknown-elf- %.elf: %.S link.ld $(TOOLCHAIN_PREFIX)gcc -nostartfiles -nostdlib -march=rv32i -mabi=ilp32 -Tlink.ld -o$@ $<