Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f6ce381

Browse filesBrowse files
targosRafaelGSS
authored andcommitted
build: bump GCC requirement to 13.2
V8 can no longer be compiled with GCC 12. Signed-Off-By: Michaël Zasso <targos@protonmail.com> PR-URL: #62555 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent bff81fc commit f6ce381
Copy full SHA for f6ce381

2 files changed

+4-4Lines changed: 4 additions & 4 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎BUILDING.md‎

Copy file name to clipboardExpand all lines: BUILDING.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Depending on the host platform, the selection of toolchains may vary.
156156

157157
| Operating System | Compiler Versions |
158158
| ---------------- | ------------------------------------------------------------------- |
159-
| Linux | GCC >= 12.2 or Clang >= 19.1 |
159+
| Linux | GCC >= 13.2 or Clang >= 19.1 |
160160
| Windows | Visual Studio 2022 or 2026 with the Windows 11 SDK on a 64-bit host |
161161
| macOS | Xcode >= 16.4 (Apple LLVM >= 19) |
162162

@@ -238,7 +238,7 @@ Consult previous versions of this document for older versions of Node.js:
238238

239239
#### Unix prerequisites
240240

241-
* `gcc` and `g++` >= 12.2 or `clang` and `clang++` >= 19.1
241+
* `gcc` and `g++` >= 13.2 or `clang` and `clang++` >= 19.1
242242
* GNU Make 3.81 or newer
243243
* [A supported version of Python][Python versions]
244244
* For test coverage, your Python installation must include pip.
Collapse file

‎configure.py‎

Copy file name to clipboardExpand all lines: configure.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,8 +1518,8 @@ def check_compiler(o):
15181518
print_verbose(f"Detected {'Apple ' if is_apple else ''}{'clang ' if is_clang else ''}C++ compiler (CXX={CXX}) version: {version_str}")
15191519
if not ok:
15201520
warn(f'failed to autodetect C++ compiler version (CXX={CXX})')
1521-
elif ((is_apple and clang_version < (17, 0, 0)) or (not is_apple and clang_version < (19, 1, 0))) if is_clang else gcc_version < (12, 2, 0):
1522-
warn(f"C++ compiler (CXX={CXX}, {version_str}) too old, need g++ 12.2.0 or clang++ 19.1.0{' or Apple clang++ 17.0.0' if is_apple else ''}")
1521+
elif ((is_apple and clang_version < (17, 0, 0)) or (not is_apple and clang_version < (19, 1, 0))) if is_clang else gcc_version < (13, 2, 0):
1522+
warn(f"C++ compiler (CXX={CXX}, {version_str}) too old, need g++ 13.2.0 or clang++ 19.1.0{' or Apple clang++ 17.0.0' if is_apple else ''}")
15231523

15241524
ok, is_clang, clang_version, gcc_version, is_apple = try_check_compiler(CC, 'c')
15251525
version_str = ".".join(map(str, clang_version if is_clang else gcc_version))

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.