diff options
author | Richard Lau <riclau@uk.ibm.com> | 2020-04-13 07:31:34 -0400 |
---|---|---|
committer | Sam Roberts <vieuxtech@gmail.com> | 2020-04-15 12:04:49 -0700 |
commit | 76c74b38f28590f5400e0e73d989366e360268d1 (patch) | |
tree | 648c905580c80b3ab0e5233da8b8a83817465a65 | |
parent | ceca86740e9590e2500e2a9bc818ee7743849ac5 (diff) | |
download | node-new-76c74b38f28590f5400e0e73d989366e360268d1.tar.gz |
doc: update Centos/RHEL releases use devtoolset-8
Releases built on Centos/RHEL have been updated to use devtoolset-8.
Signed-off-by: Richard Lau <riclau@uk.ibm.com>
PR-URL: https://github.com/nodejs/node/pull/32812
Refs: https://github.com/nodejs/build/issues/2168
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
-rw-r--r-- | BUILDING.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/BUILDING.md b/BUILDING.md index 0f9ffe5bff..3f4f5f691f 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -170,15 +170,15 @@ Binaries at <https://nodejs.org/download/release/> are produced on: | --------------------- | ------------------------------------------------------------------------ | | aix-ppc64 | AIX 7.1 TL05 on PPC64BE with GCC 6 | | darwin-x64 (and .pkg) | macOS 10.15, Xcode Command Line Tools 11 with -mmacosx-version-min=10.13 | -| linux-arm64 | CentOS 7 with devtoolset-6 / GCC 6 | +| linux-arm64 | CentOS 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | | linux-armv7l | Cross-compiled on Ubuntu 16.04 x64 with [custom GCC toolchain](https://github.com/rvagg/rpi-newer-crosstools) | -| linux-ppc64le | CentOS 7 with devtoolset-6 / GCC 6 <sup>[7](#fn7)</sup> | -| linux-s390x | RHEL 7 with devtoolset-6 / GCC 6 <sup>[7](#fn7)</sup> | -| linux-x64 | CentOS 7 with devtoolset-6 / GCC 6 <sup>[7](#fn7)</sup> | +| linux-ppc64le | CentOS 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | +| linux-s390x | RHEL 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | +| linux-x64 | CentOS 7 with devtoolset-8 / GCC 8 <sup>[8](#fn8)</sup> | | win-x64 and win-x86 | Windows 2012 R2 (x64) with Visual Studio 2019 | -<em id="fn7">7</em>: The Enterprise Linux devtoolset-6 allows us to compile -binaries with GCC 6 but linked to the glibc and libstdc++ versions of the host +<em id="fn8">8</em>: The Enterprise Linux devtoolset-8 allows us to compile +binaries with GCC 8 but linked to the glibc and libstdc++ versions of the host platforms (CentOS 7 / RHEL 7). Therefore, binaries produced on these systems are compatible with glibc >= 2.17 and libstdc++ >= 6.0.20 (`GLIBCXX_3.4.20`). These are available on distributions natively supporting GCC 4.9, such as |