diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2017-06-05 10:53:54 +0200 |
---|---|---|
committer | James M Snell <jasnell@gmail.com> | 2017-06-15 11:04:17 -0700 |
commit | d13a65ad68c429884434cdcd94c52b79a6d69717 (patch) | |
tree | fb244b000af0fba0ed7e8db5753e36f37ff1942c /BUILDING.md | |
parent | de4a749788aa88b6f23f50eccb7a6752f6bb59b7 (diff) | |
download | node-new-d13a65ad68c429884434cdcd94c52b79a6d69717.tar.gz |
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.
PR-URL: https://github.com/nodejs/node/pull/13466
Ref: https://github.com/nodejs/node/pull/11840
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Nikolai Vavilov <vvnicholas@gmail.com>
Diffstat (limited to 'BUILDING.md')
-rw-r--r-- | BUILDING.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BUILDING.md b/BUILDING.md index 9c1fb68999..47630ddf15 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,8 +80,8 @@ Depending on host platform, the selection of toolchains may vary. Prerequisites: -* `gcc` and `g++` 4.8.5 or newer, or -* `clang` and `clang++` 3.4.2 or newer +* `gcc` and `g++` 4.9.4 or newer, or +* `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 |