Merge pull request #9028 from protocolbuffers/toolchain

Changing clang path in toolchain
pull/8232/head
deannagarcia 4 years ago committed by GitHub
commit bc23dfe314
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      toolchain/cc_toolchain_config.bzl

@ -47,7 +47,7 @@ def _impl(ctx):
),
tool_path(
name = "cpp",
path = "/usr/bin/clang-cpp",
path = "/usr/local/bin/clang-cpp",
),
tool_path(
name = "dwp",
@ -123,7 +123,7 @@ def _impl(ctx):
cxx_builtin_include_directories = [
ctx.attr.toolchain_dir,
"/usr/include",
"/usr/lib/clang",
"/usr/local/lib/clang",
],
features = [linker_flags, compiler_flags],
host_system_name = "local",

Loading…
Cancel
Save