From 5e915039e9cb0cb3f0539a11a13d76331162a221 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Tue, 2 Feb 2021 21:53:56 +0100 Subject: [PATCH] readme: add build-essential to Ubuntu build dependencies otherwise only gcc will be available on a fresh Ubuntu install (tested with 20.04), but g++ is missing. This installs both. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f9204feb..5da4bd793 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Build Instructions For example, on Ubuntu, one can install the mandatory build dependencies with: ``` -sudo apt-get install cmake libfftw3-dev libmbedtls-dev libboost-program-options-dev libconfig++-dev libsctp-dev +sudo apt-get install build-essential cmake libfftw3-dev libmbedtls-dev libboost-program-options-dev libconfig++-dev libsctp-dev ``` or on Fedora: ```