Skip to content

Commit

Permalink
doc: add build-essential to avoid build error
Browse files Browse the repository at this point in the history
make

  Tell CMake where to find the compiler by setting either the environment
  variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path
  to the compiler, or to the compiler name if it is in the PATH.

After installing build-essential make builds successfully.
  • Loading branch information
guest271314 committed Feb 23, 2023
1 parent 06afa9b commit 9cce4dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ The following modules compose the standard library:
If you didn't already clone this repository recursively, make sure you initialize these
submodules with `git submodule update --init` before proceeding to the build.

Install dependencies (`libtool`, `makeinfo`, `openssl`, `libcurl`):
Install dependencies (`libtool`, `makeinfo`, `openssl`, `libcurl`, `build-essential`):

```bash
sudo apt install libtool texinfo libcurl4-openssl-dev
sudo apt install libtool texinfo libcurl4-openssl-dev build-essential
```


Expand Down

0 comments on commit 9cce4dc

Please sign in to comment.