Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/content/docs/distribute/windows-installer.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ Default Tauri apps should not require this.
</TabItem>
<TabItem label="macOS">
```sh title=macOS
brew install llvm
brew install llvm lld
```

On macOS you also have to add `/opt/homebrew/opt/llvm/bin` to your `$PATH` as suggested in the install output.
On macOS you also have to add `/opt/homebrew/opt/llvm/bin` to your `$PATH` as suggested in the install output (LLD is now provided in a separate formula in Homebrew).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this trying to convey? Do users need to add lld manually to the path as well?

Copy link
Author

@iarata iarata Oct 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No they just need to install it separately as it's no longer installed along LLVM
Perhaps the description edits wasn't clear enough 🤔

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, i think it's fine to just remove this change. The edit of the brew install line should be enough.


</TabItem>
</Tabs>
Expand Down