From d1a1818898b842d7b22f77c654622dfa5475ca0c Mon Sep 17 00:00:00 2001 From: Deanna Garcia Date: Tue, 28 Sep 2021 18:24:37 +0000 Subject: [PATCH] Changing clang path --- toolchain/cc_toolchain_config.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolchain/cc_toolchain_config.bzl b/toolchain/cc_toolchain_config.bzl index eb730a9078..4ef29f8d85 100644 --- a/toolchain/cc_toolchain_config.bzl +++ b/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",