From 20b266f296ac29b87a7dbe6151bcd65dbcb88fe6 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Sun, 5 May 2024 01:17:07 +0200 Subject: [PATCH] build: Fix finding LLVM on macOS on ARM64 --- bin/activate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/activate b/bin/activate index d80b38373..4de0d5c93 100755 --- a/bin/activate +++ b/bin/activate @@ -8,7 +8,7 @@ readlink_cmd="readlink" if [ $(uname -s) = 'Darwin' ]; then - export PATH=/usr/local/opt/llvm/bin/:$PATH + export PATH=/opt/homebrew/opt/llvm/bin/:/usr/local/opt/llvm/bin/:$PATH readlink_cmd="greadlink" fi