Use same toolchain for RBE as non-RBE
Bug: 233029164 Fixes: 246271065 Test: m Test: EXPERIMENTAL_USE_OPENJDK17_TOOLCHAIN=true m Test: EXPERIMENTAL_USE_OPENJDK17_TOOLCHAIN=true EXPERIMENTAL_TARGET_JAVA_VERSION_17=true m Change-Id: I7962068938b16dde52e68abb3baff212deb287be
This commit is contained in:
parent
085a34b963
commit
0b4d07dc51
1 changed files with 2 additions and 2 deletions
|
@ -81,11 +81,11 @@ ifneq ($(filter-out false,$(USE_RBE)),)
|
|||
endif
|
||||
|
||||
ifdef RBE_R8
|
||||
R8_WRAPPER := $(strip $(RBE_WRAPPER) --labels=type=compile,compiler=r8 --exec_strategy=$(r8_exec_strategy) --platform=$(java_r8_d8_platform) --inputs=$(OUT_DIR)/soong/host/linux-x86/framework/r8-compat-proguard.jar,build/make/core/proguard_basic_keeps.flags --toolchain_inputs=prebuilts/jdk/jdk11/linux-x86/bin/java)
|
||||
R8_WRAPPER := $(strip $(RBE_WRAPPER) --labels=type=compile,compiler=r8 --exec_strategy=$(r8_exec_strategy) --platform=$(java_r8_d8_platform) --inputs=$(OUT_DIR)/soong/host/linux-x86/framework/r8-compat-proguard.jar,build/make/core/proguard_basic_keeps.flags --toolchain_inputs=$(JAVA))
|
||||
endif
|
||||
|
||||
ifdef RBE_D8
|
||||
D8_WRAPPER := $(strip $(RBE_WRAPPER) --labels=type=compile,compiler=d8 --exec_strategy=$(d8_exec_strategy) --platform=$(java_r8_d8_platform) --inputs=$(OUT_DIR)/soong/host/linux-x86/framework/d8.jar --toolchain_inputs=prebuilts/jdk/jdk11/linux-x86/bin/java)
|
||||
D8_WRAPPER := $(strip $(RBE_WRAPPER) --labels=type=compile,compiler=d8 --exec_strategy=$(d8_exec_strategy) --platform=$(java_r8_d8_platform) --inputs=$(OUT_DIR)/soong/host/linux-x86/framework/d8.jar --toolchain_inputs=$(JAVA))
|
||||
endif
|
||||
|
||||
rbe_dir :=
|
||||
|
|
Loading…
Reference in a new issue