Skip to content

Commit c977380

Browse files
committed
docs: add faq section
1 parent 859f192 commit c977380

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

guide/src/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
- [JavaScript API](./usage/wasm.md)
1010
- [Advance](./usage/advance.md)
1111
- [Configuration](./usage/conf.md)
12+
- [FAQ](./usage/faq.md)
1213
- [Examples](./examples/index.md)
1314
- [Using Tonbo](./examples/declare.md)
1415
- [Integrate with Datafusio](./examples/datafusion.md)

guide/src/usage/faq.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# FAQ
2+
3+
## Failed to run custom build command for `ring` in macOS
4+
Apple Clang is a fork of Clang that is specialized to Apple's wishes. It doesn't support wasm32-unknown-unknown. You need to download and use llvm.org Clang instead. You can refer to this [issue](https://github.com/briansmith/ring/issues/1824) for more information.
5+
6+
```bash
7+
brew install llvm
8+
echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH"' >> ~/.zshrc
9+
```

0 commit comments

Comments
 (0)