From d5031d55f4a5db47bd18571e2743593aa88d8ccb Mon Sep 17 00:00:00 2001 From: Ayane Satomi Date: Thu, 19 Sep 2019 01:30:38 +0800 Subject: [PATCH 1/2] [README] add Requirements section This is based user feedback and testing. This may expand if need be Signed-off-by: Ayane Satomi --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index dece97a2d322..367ea69b4e3e 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,15 @@ docker run -it -p 127.0.0.1:8080:8080 -v "${HOME}/.local/share/code-server:/home ![Screenshot](/doc/assets/ide.gif) ## Getting Started + +### Requirements + +- Minimum GLIBC version of 2.15 and a minimum version of GLIBCXX of 3.4.15. + - This is the main requirement for building Visual Studio Code. We cannot go lower than this. +- A 64-bit host with at least 1GB RAM and 2 cores. + - 1 core hosts would work but not optimally. +- Docker (for Docker versions of `code-server`). + ### Run over SSH Use [sshcode](https://github.com/codercom/sshcode) for a simple setup. From 762e48eb0a117d16af5fc89e71b90b915eb9367b Mon Sep 17 00:00:00 2001 From: Ayane Satomi Date: Thu, 19 Sep 2019 01:34:23 +0800 Subject: [PATCH 2/2] [README] raised the bar a bit more Apparently we were targeting GLIBC 2.17 Signed-off-by: Ayane Satomi --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 367ea69b4e3e..c460cda7067e 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ docker run -it -p 127.0.0.1:8080:8080 -v "${HOME}/.local/share/code-server:/home ### Requirements -- Minimum GLIBC version of 2.15 and a minimum version of GLIBCXX of 3.4.15. +- Minimum GLIBC version of 2.17 and a minimum version of GLIBCXX of 3.4.15. - This is the main requirement for building Visual Studio Code. We cannot go lower than this. - A 64-bit host with at least 1GB RAM and 2 cores. - 1 core hosts would work but not optimally.