From cc470762d510353b971389e0b3ded608ad77b3a1 Mon Sep 17 00:00:00 2001 From: Jeff Chiang <33030965+tizee@users.noreply.github.com> Date: Thu, 11 Apr 2024 00:41:57 +0800 Subject: [PATCH] use xcrun to run Apple clang --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 19c17e7..2fc638d 100644 --- a/makefile +++ b/makefile @@ -16,4 +16,4 @@ clean: $(BUILD_PATH)/skhd: $(SKHD_SRC) mkdir -p $(BUILD_PATH) - clang $^ $(BUILD_FLAGS) $(FRAMEWORKS) -o $@ + xcrun clang $^ $(BUILD_FLAGS) $(FRAMEWORKS) -o $@