Skip to content
Merged
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
14 changes: 3 additions & 11 deletions docs/contribute/source/os/macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ cd WasmEdge

WasmEdge will try to use the latest LLVM release to create our nightly build. If you want to build from source, you may need to install these dependencies yourself.

- LLVM 16.0.4 (>= 10.0.0)
- LLVM 18.1.8 (>= 10.0.0)

```bash
# Tools and libraries
brew install cmake ninja llvm
export LLVM_DIR="$(brew --prefix)/opt/llvm/lib/cmake"
brew install cmake ninja llvm@18
export LLVM_DIR="$(brew --prefix)/opt/llvm@18/lib/cmake"
export CC=clang
export CXX=clang++
```
Expand All @@ -59,11 +59,3 @@ Users can use these tests to verify the correctness of WasmEdge binaries.
cd build
DYLD_LIBRARY_PATH=$(pwd)/lib/api ctest
```

## Known issues

The following tests can not pass on Macos, we are investigating these issues:

- wasmedgeWasiSocketTests

But we have an open issue working on it. Don't hesitate to leave your feedback for [this issue](https://github.com/WasmEdge/WasmEdge/issues/2438).
Loading