From c28f6851386807a40dacb89cfef96d87c7ef625e Mon Sep 17 00:00:00 2001 From: tijlleenders Date: Sat, 20 Jul 2024 16:59:52 +0200 Subject: [PATCH] update troubleshoot linker cc not found --- documentation/technical/Development-Setup.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/documentation/technical/Development-Setup.md b/documentation/technical/Development-Setup.md index 76ff1e82..e9163ad0 100644 --- a/documentation/technical/Development-Setup.md +++ b/documentation/technical/Development-Setup.md @@ -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.