From 10650cced26da994c29ac482674f010523d365c2 Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Fri, 10 Feb 2023 18:16:51 -0500 Subject: Fix PATH setup in macOS setup instructions (#2044) Very minor! I was just going through the setup instructions and had a bit of a double take. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fab9c7463..e0917320b 100644 --- a/README.md +++ b/README.md @@ -5133,7 +5133,7 @@ which clang-15 If it is not, you will have to run this to link it: ```bash -export PATH="$(brew --prefix llvm@15)/bin" +export PATH="$PATH:$(brew --prefix llvm@15)/bin" export LDFLAGS="$LDFLAGS -L$(brew --prefix llvm@15)/lib" export CPPFLAGS="$CPPFLAGS -I$(brew --prefix llvm@15)/include" ``` -- cgit v1.2.3