Merge pull request #9029 from protocolbuffers/toolchain

Change tool paths for docker
pull/8232/head
deannagarcia 3 years ago committed by GitHub
commit c57ee04cf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      toolchain/cc_toolchain_config.bzl

@ -39,7 +39,7 @@ def _impl(ctx):
),
tool_path(
name = "ar",
path = "/usr/bin/llvm-ar-11",
path = "/usr/bin/ar",
),
tool_path(
name = "compat-ld",
@ -47,31 +47,31 @@ def _impl(ctx):
),
tool_path(
name = "cpp",
path = "/usr/local/bin/clang-cpp",
path = "/bin/false",
),
tool_path(
name = "dwp",
path = "/usr/bin/llvm-dwp",
path = "/bin/false",
),
tool_path(
name = "gcov",
path = "/usr/bin/llvm-profdata",
path = "/bin/false",
),
tool_path(
name = "nm",
path = "/usr/bin/llvm-nm",
path = "/bin/false",
),
tool_path(
name = "objcopy",
path = "/usr/bin/llvm-objcopy",
path = "/bin/false",
),
tool_path(
name = "objdump",
path = "/usr/bin/llvm-objdump",
path = "/bin/false",
),
tool_path(
name = "strip",
path = "/usr/bin/llvm-strip",
path = "/bin/false",
),
]

Loading…
Cancel
Save