Skip to content

Commit d6f2a17

Browse files
author
Kim Barrett
committedMar 5, 2024
8325881: Require minimum gcc version 10
Reviewed-by: ihse, shade
1 parent 0b95909 commit d6f2a17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎doc/building.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ <h2 id="native-compiler-toolchain-requirements">Native Compiler
601601
<p>All compilers are expected to be able to handle the C11 language
602602
standard for C, and C++14 for C++.</p>
603603
<h3 id="gcc">gcc</h3>
604-
<p>The minimum accepted version of gcc is 6.0. Older versions will not
604+
<p>The minimum accepted version of gcc is 10.0. Older versions will not
605605
be accepted by <code>configure</code>.</p>
606606
<p>The JDK is currently known to compile successfully with gcc version
607607
13.2 or newer.</p>

‎doc/building.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ C, and C++14 for C++.
403403

404404
### gcc
405405

406-
The minimum accepted version of gcc is 6.0. Older versions will not be accepted
406+
The minimum accepted version of gcc is 10.0. Older versions will not be accepted
407407
by `configure`.
408408

409409
The JDK is currently known to compile successfully with gcc version 13.2 or

‎make/autoconf/toolchain.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ TOOLCHAIN_DESCRIPTION_xlc="IBM XL C/C++"
5151

5252
# Minimum supported versions, empty means unspecified
5353
TOOLCHAIN_MINIMUM_VERSION_clang="3.5"
54-
TOOLCHAIN_MINIMUM_VERSION_gcc="6.0"
54+
TOOLCHAIN_MINIMUM_VERSION_gcc="10.0"
5555
TOOLCHAIN_MINIMUM_VERSION_microsoft="19.28.0.0" # VS2019 16.8, aka MSVC 14.28
5656
TOOLCHAIN_MINIMUM_VERSION_xlc="16.1.0.0011"
5757

0 commit comments

Comments
 (0)
Please sign in to comment.