diff options
author | Tobias Thierer <tobiast@google.com> | 2017-09-28 16:21:54 +0100 |
---|---|---|
committer | Tobias Thierer <tobiast@google.com> | 2017-09-28 16:24:17 +0100 |
commit | fe2fbdf8f9572aa81a0c3a71e237fcb1e4678884 (patch) | |
tree | 66b35195d0042ca791338244a07344291f2870ba /tools | |
parent | b2adcb2d9150287bdac9044cbd02ac6c1b1790c1 (diff) |
Establish OpenJDK 9+181 as an upstream revision of interest.
jdk-9+181 (added 3 August 2017) is currently the latest
tag at http://hg.openjdk.java.net/jdk9/jdk9/
This CL arbitrarily picks that commit as an initial reference
point, from which one may want to integrate upstream sources.
This tag should be pretty close to the public availability build
of OpenJDK 9, but I don't know whether it is exactly identical.
This CL adds toplevel documentation to CompareUpstream for how to
check out that upstream revision, but does not change the expected
upstream version of any particular ojluni class and doesn't change
the tool to compare ojluni files against the new upstream.
The purpose of this CL is merely to pick, and name, a new upstream
revision that other CLs may want to refer to.
Test: Ran the given commands to check out upstream sources.
Test: Treehugger.
Change-Id: I89e95a98268d38224f663c449f019624f8d1c685
Diffstat (limited to 'tools')
-rw-r--r-- | tools/upstream/src/main/java/libcore/CompareUpstreams.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/upstream/src/main/java/libcore/CompareUpstreams.java b/tools/upstream/src/main/java/libcore/CompareUpstreams.java index bd80b82b72..fee7253ad2 100644 --- a/tools/upstream/src/main/java/libcore/CompareUpstreams.java +++ b/tools/upstream/src/main/java/libcore/CompareUpstreams.java @@ -46,7 +46,7 @@ import java.util.regex.Pattern; * - The ANDROID_BUILD_TOP environment variable must be set to point to the * AOSP root directory (parent of libcore). * - * To check out upstreams OpenJDK 7u40, 8u60 and 8u121-b13, run: + * To check out upstreams OpenJDK 7u40, 8u60, 8u121-b13, and 9+181, run: * * mkdir ~/openjdk * cd ~/openjdk @@ -57,6 +57,8 @@ import java.util.regex.Pattern; * (cd !$ ; hg update -r jdk8u121-b13 && sh get_source.sh) * hg clone http://hg.openjdk.java.net/jdk8u/jdk8u60/ 8u60 * (cd !$ ; sh get_source.sh) + * hg clone http://hg.openjdk.java.net/jdk9/jdk9/ 9+181 + * (cd !$ ; hg update -r jdk-9+181 && sh get_source.sh) * * To get the 9b113+ upstream, follow the instructions from the commit * message of AOSP libcore commit 29957558cf0db700bfaae360a80c42dc3871d0e5 |