From 4e199cddd21f28ede89e3a1cfcee29bcc6765c92 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Tue, 28 Jan 2025 14:00:21 -0500 Subject: [PATCH] People are reporting this prereq --- docs/tutorials/smart-rollup.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/tutorials/smart-rollup.md b/docs/tutorials/smart-rollup.md index ae6ca4daf..61a3c28a9 100644 --- a/docs/tutorials/smart-rollup.md +++ b/docs/tutorials/smart-rollup.md @@ -104,6 +104,12 @@ TODO Could we install some of the tools in the docker container instead of makin export CC="$(brew --prefix llvm)/bin/clang" ``` + In some cases for MacOS you may need to update your `PATH` environment variable to include LLVM by running this command: + + ```bash + echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH"' >> ~/.zshrc + ``` + **Ubuntu** ```bash