aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java_tools
diff options
context:
space:
mode:
authorGravatar cushon <cushon@google.com>2018-08-08 08:42:10 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-08-08 08:43:53 -0700
commitc56699db5f9173739ba3ac55aa9fa69b6457a99b (patch)
tree3590eebf1ccbd1c0235cf5bc81bd9493fab04b54 /src/java_tools
parent366da4cf27b7f957ef39f89206db77fa2ac289df (diff)
'DumpPlatformClasspath' now dumps the current JDK's default platform classpath
instead of indirecting through javac's bootclasspath handling and attempting to pin to a particular source version. This is a stop-gap until we can just use javac's --release flag. Using the output of DumpPlatformClasspath as the bootclasspath for the default java_toolchain side-steps issues with @local_jdk (see #5744, #5594). PiperOrigin-RevId: 207890272
Diffstat (limited to 'src/java_tools')
-rw-r--r--src/java_tools/buildjar/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java_tools/buildjar/BUILD b/src/java_tools/buildjar/BUILD
index 4a3a5f09e6..2626c515bd 100644
--- a/src/java_tools/buildjar/BUILD
+++ b/src/java_tools/buildjar/BUILD
@@ -77,7 +77,7 @@ java_toolchain(
# class path after -bootclasspath. For convenience, we currently have a
# single jar that contains the contents of both the bootclasspath and
# extdirs.
- bootclasspath = ["//tools/jdk:platformclasspath-impl.jar"],
+ bootclasspath = ["//tools/jdk:platformclasspath.jar"],
extclasspath = [],
genclass = ["bootstrap_genclass_deploy.jar"],
ijar = ["//third_party/ijar"],