# HG changeset patch # User herrick # Date 1555697898 14400 # Node ID 2e028c5fde1e6ffa6231f20244102fe10470a864 # Parent 77109ab874026df97573e67248e29890be3c6d14# Parent 783ddd361177c543492a4e0ebeaeb3061c437bbb Merge diff -r 77109ab87402 -r 2e028c5fde1e doc/building.html --- a/doc/building.html Fri Apr 19 14:16:13 2019 -0400 +++ b/doc/building.html Fri Apr 19 14:18:18 2019 -0400 @@ -180,15 +180,15 @@ Linux -Oracle Enterprise Linux 6.4 / 7.1 (using kernel 3.8.13) +Oracle Enterprise Linux 6.4 / 7.6 Solaris -Solaris 11.1 SRU 21.4.1 / 11.2 SRU 5.5 +Solaris 11.3 macOS -Mac OS X 10.9 (Mavericks) / 10.10 (Yosemite) +Mac OS X 10.13 (High Sierra) Windows @@ -196,7 +196,7 @@ -

The double version numbers for Linux, Solaris and macOS is due to the hybrid model used at Oracle, where header files and external libraries from an older version are used when building on a more modern version of the OS.

+

The double version numbers for Linux and Solaris are due to the hybrid model used at Oracle, where header files and external libraries from an older version are used when building on a more modern version of the OS.

The Build Group has a wiki page with Supported Build Platforms. From time to time, this is updated by contributors to list successes or failures of building on different platforms.

Windows

Windows XP is not a supported platform, but all newer Windows should be able to build the JDK.

@@ -281,19 +281,19 @@ Linux -gcc 7.3.0 +gcc 8.2.0 macOS -Apple Xcode 9.4 (using clang 9.1.0) +Apple Xcode 10.1 (using clang 10.0.0) Solaris -Oracle Solaris Studio 12.4 (with compiler version 5.13) +Oracle Solaris Studio 12.6 (with compiler version 5.15) Windows -Microsoft Visual Studio 2017 update 15.5.5 +Microsoft Visual Studio 2017 update 15.9.6 diff -r 77109ab87402 -r 2e028c5fde1e doc/building.md --- a/doc/building.md Fri Apr 19 14:16:13 2019 -0400 +++ b/doc/building.md Fri Apr 19 14:18:18 2019 -0400 @@ -150,14 +150,14 @@ Operating system Vendor/version used ----------------- ------------------------------------------------------- - Linux Oracle Enterprise Linux 6.4 / 7.1 (using kernel 3.8.13) - Solaris Solaris 11.1 SRU 21.4.1 / 11.2 SRU 5.5 - macOS Mac OS X 10.9 (Mavericks) / 10.10 (Yosemite) + Linux Oracle Enterprise Linux 6.4 / 7.6 + Solaris Solaris 11.3 SRU 20 + macOS Mac OS X 10.13 (High Sierra) Windows Windows Server 2012 R2 -The double version numbers for Linux, Solaris and macOS is due to the hybrid -model used at Oracle, where header files and external libraries from an older -version are used when building on a more modern version of the OS. +The double version numbers for Linux and Solaris are due to the hybrid model +used at Oracle, where header files and external libraries from an older version +are used when building on a more modern version of the OS. The Build Group has a wiki page with [Supported Build Platforms]( https://wiki.openjdk.java.net/display/Build/Supported+Build+Platforms). From @@ -323,10 +323,10 @@ Operating system Toolchain version ------------------ ------------------------------------------------------- - Linux gcc 7.3.0 - macOS Apple Xcode 9.4 (using clang 9.1.0) - Solaris Oracle Solaris Studio 12.4 (with compiler version 5.13) - Windows Microsoft Visual Studio 2017 update 15.5.5 + Linux gcc 8.2.0 + macOS Apple Xcode 10.1 (using clang 10.0.0) + Solaris Oracle Solaris Studio 12.6 (with compiler version 5.15) + Windows Microsoft Visual Studio 2017 update 15.9.6 ### gcc diff -r 77109ab87402 -r 2e028c5fde1e src/hotspot/cpu/aarch64/vm_version_aarch64.hpp --- a/src/hotspot/cpu/aarch64/vm_version_aarch64.hpp Fri Apr 19 14:16:13 2019 -0400 +++ b/src/hotspot/cpu/aarch64/vm_version_aarch64.hpp Fri Apr 19 14:18:18 2019 -0400 @@ -67,7 +67,11 @@ return false; } + // The CPU implementer codes can be found in + // ARM Architecture Reference Manual ARMv8, for ARMv8-A architecture profile + // https://developer.arm.com/docs/ddi0487/latest enum Family { + CPU_AMPERE = 0xC0, CPU_ARM = 'A', CPU_BROADCOM = 'B', CPU_CAVIUM = 'C',