From e263e2aaf0b0d4282bb817449ebdff391908d768 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Mon, 5 Jun 2017 10:53:54 +0200 Subject: [PATCH 1/2] doc: update minimum g++ version to 4.9.4 The 4.8.x releases don't fully support C++11. Update the prerequisites for node.js 8 so that we won't have to work around compiler bugs in the future. To be decided if we should also update the minimum clang version. I believe clang 3.4.2 properly supports C++11 but am not 100% sure. Refs: https://github.com/nodejs/node/pull/11840 --- BUILDING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 9c1fb6899911c4..41ce21e3ae57b0 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -65,7 +65,7 @@ Depending on host platform, the selection of toolchains may vary. #### Unix -* GCC 4.8.5 or newer +* GCC 4.9.4 or newer * Clang 3.4.2 or newer #### Windows @@ -80,7 +80,7 @@ Depending on host platform, the selection of toolchains may vary. Prerequisites: -* `gcc` and `g++` 4.8.5 or newer, or +* `gcc` and `g++` 4.9.4 or newer, or * `clang` and `clang++` 3.4.2 or newer * Python 2.6 or 2.7 * GNU Make 3.81 or newer From 6ab0f7583855b5113b54e4b6f3f060ab8c49d54e Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 15 Jun 2017 14:03:19 +0200 Subject: [PATCH 2/2] squash! add CLT note --- BUILDING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILDING.md b/BUILDING.md index 41ce21e3ae57b0..47630ddf150216 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -81,7 +81,7 @@ Depending on host platform, the selection of toolchains may vary. Prerequisites: * `gcc` and `g++` 4.9.4 or newer, or -* `clang` and `clang++` 3.4.2 or newer +* `clang` and `clang++` 3.4.2 or newer (macOS: latest Xcode Command Line Tools) * Python 2.6 or 2.7 * GNU Make 3.81 or newer