From e7acabc1c18e262831582181642b3d26722c7d8d Mon Sep 17 00:00:00 2001 From: ltrk2 <107155950+ltrk2@users.noreply.github.com> Date: Wed, 4 Dec 2024 12:44:05 -0500 Subject: [PATCH] Use Clang for more reliable sysroot-handling (#4) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ebfa61e8..56735a21 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ endif export TARGET_ARCH export CGO_ENABLED = 1 export GOARCH = $(TARGET_ARCH) -export CC = $(ARCH_PREFIX)gcc +export CC = $(ARCH_PREFIX)clang-16 export OBJCOPY = $(ARCH_PREFIX)objcopy BRANCH = $(shell git rev-parse --abbrev-ref HEAD | tr -d '-' | tr '[:upper:]' '[:lower:]')