build: Don't use sysroot for host_toolchain

protoc should be built with the host toolchain, usually not needing
the sysroot.
This commit is contained in:
klzgrad 2020-02-06 03:06:50 +08:00
parent c2e6e49551
commit 1a39cbb19a

View File

@ -26,6 +26,10 @@ declare_args() {
current_cpu == "mipsel" || current_cpu == "mips64el"
}
if (current_toolchain == host_toolchain && host_toolchain == "//build/toolchain/linux:clang_x64") {
sysroot = ""
}
if (sysroot == "") {
if (current_os == target_os && current_cpu == target_cpu &&
target_sysroot != "") {