From 5459a8e3c282b100e1f973db55c4e51beff5ffea Mon Sep 17 00:00:00 2001 From: azoth zephyr Date: Fri, 29 Dec 2023 14:27:13 -0800 Subject: [PATCH 1/2] add build-essential installation to readme steps, rustup makes an assumption thats the C linker is already installed. on the fresh ubuntu 22.04 system i am installing on build-essential wasn't installed leading to an cc linker not found error on rust compilation. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 71af2c78..56f4bae2 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ Note that only permissioned publishers can publish data to the network. Please r Prerequisites: Rust 1.68 or higher. A Unix system is recommended. ```shell -# Install OpenSSL (Debian-based systems) -$ apt install libssl-dev +# Install dependencies +$ apt install libssl-dev build-essential # Install Rust curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh From 1ab0d5287e5fecc05fbf7ff8832526e0cdb9c591 Mon Sep 17 00:00:00 2001 From: azoth zephyr Date: Fri, 29 Dec 2023 14:28:44 -0800 Subject: [PATCH 2/2] readd in 'debian-based systems' (forgot to save before previous commit) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 56f4bae2..cf933590 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Note that only permissioned publishers can publish data to the network. Please r Prerequisites: Rust 1.68 or higher. A Unix system is recommended. ```shell -# Install dependencies +# Install dependencies (Debian-based systems) $ apt install libssl-dev build-essential # Install Rust