Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update troubleshoot linker cc not found #462

Merged
merged 1 commit into from
Jul 20, 2024
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
3 changes: 2 additions & 1 deletion documentation/technical/Development-Setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
cargo install wasm-bindgen-cli
```
- Or [Install wasm-bindgen command line interface](https://rustwasm.github.io/wasm-bindgen/reference/cli.html) with any dependencies
- If it fails (openssl, pkg-config) or
- If it fails with openssl or pkg-config error message do
```shell
sudo apt-get install wabt binaryen
# [... or DIY](https://github.com/WebAssembly/wabt)
```
- If it fails with `linker 'cc' not found` do `sudo apt install build-essential` and retry

5. (Optional) [Install deno](https://deno.land/manual/getting_started/installation). Only necessary if you want to run the deno tests that test the usage of the WASM module in JavaScript context.

Expand Down
Loading