Skip to content

Commit

Permalink
doc: Update dependency required for "lld"
Browse files Browse the repository at this point in the history
At least for homebrew, lld is no longer included in llvm releases
  • Loading branch information
kohlschuetter committed Nov 25, 2024
1 parent a09bb44 commit eda5f16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/site/markdown/crosscomp.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ JNI code for both macOS and Linux, on _either_ platform.
In order to cross-compile, our development machine (the one where we do the compilation), needs
to have clang and llvm.

On Mac, the Xcode version of clang is not sufficient. You have to install llvm from Homebrew:
On Mac, the Xcode version of clang is not sufficient. You have to install llvm and lld from Homebrew:

brew install llvm
brew install llvm lld

## Setting up the target SDKs

Expand Down Expand Up @@ -140,4 +140,4 @@ be relatively straightforward.

## See also

[Developing with Xcode](xcode.html).
[Developing with Xcode](xcode.html).
2 changes: 1 addition & 1 deletion src/site/markdown/release.md.vm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ x86_64-w64-mingw32-gcc, a GCC compiler binary to allow building for Windows.

On Mac, run the following command.

brew install llvm mingw-w64
brew install llvm lld mingw-w64

If you don't have Homebrew, obtain it from [here](https://brew.sh/) first.

Expand Down

0 comments on commit eda5f16

Please sign in to comment.