From b79cfee386cfcf61cff77fb2ced6d4e30a563c64 Mon Sep 17 00:00:00 2001 From: vince-fugnitto Date: Mon, 2 Mar 2020 16:07:52 -0500 Subject: [PATCH] documentation: update prerequisites The following commit updates the `prerequisites` for Linux to include `sudo apt-get install build-essential`. The change was first described in the following comment https://github.com/eclipse-theia/theia/issues/2174#issuecomment-399829033 but was never included. It was also useful in resolving the issue https://github.com/eclipse-theia/theia/issues/7255. Signed-off-by: vince-fugnitto --- doc/Developing.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/Developing.md b/doc/Developing.md index fda18e36540a5..12977136b3a1b 100644 --- a/doc/Developing.md +++ b/doc/Developing.md @@ -65,6 +65,7 @@ Some additional tools and libraries are needed depending on your platform: - [make](https://www.gnu.org/software/make/) - [gcc](https://gcc.gnu.org/) (or another compiling toolchain) - [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/) + - build-essential: `sudo apt-get install build-essential` - Dependencies for `native-keymap` node native extension: - Debian-based: `sudo apt-get install libx11-dev libxkbfile-dev` - Red Hat-based: `sudo yum install libX11-devel.x86_64 libxkbfile-devel.x86_64 # or .i686`