Skip to content

Commit

Permalink
Update to bazel 24.x
Browse files Browse the repository at this point in the history
See bazelbuild/bazel#6942 for details
  • Loading branch information
matt-e authored May 1, 2019
1 parent 565c754 commit 4a8f8a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/cc_toolchain/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ cc_toolchain(
compiler_files = ":clang_all",
cpu = "k8",
dwp_files = ":clang_wrappers",
dynamic_runtime_libs = ["@org_llvm_clang//:runtime_libs"],
dynamic_runtime_lib = "@org_llvm_clang//:runtime_libs",
linker_files = ":clang_wrappers",
objcopy_files = ":clang_wrappers",
static_runtime_libs = ["@org_llvm_clang//:static_libs"],
static_runtime_lib = "@org_llvm_clang//:static_libs",
strip_files = ":clang_wrappers",
supports_param_files = True,
)
Expand All @@ -86,10 +86,10 @@ cc_toolchain(
compiler_files = ":clang_arm_all",
cpu = "armeabihf",
dwp_files = ":clang_wrappers",
dynamic_runtime_libs = [":empty"],
dynamic_runtime_lib = ":empty",
linker_files = ":clang_arm_all",
objcopy_files = ":clang_wrappers",
static_runtime_libs = [":empty"],
static_runtime_lib = ":empty",
strip_files = ":clang_wrappers",
supports_param_files = True,
)

0 comments on commit 4a8f8a2

Please sign in to comment.