Merge pull request #34218 from Flamefire:fix_missing_linker_path

PiperOrigin-RevId: 304018710
Change-Id: Iedb763a3acfd97501ba677de56ca943f2d4bfdc8
This commit is contained in:
TensorFlower Gardener 2020-03-31 12:23:30 -07:00
commit 9b6115d755

View File

@ -1035,18 +1035,7 @@ def _create_local_cuda_repository(repository_ctx):
cuda_defines["%{host_compiler_prefix}"] = host_compiler_prefix
# Bazel sets '-B/usr/bin' flag to workaround build errors on RHEL (see
# https://github.com/bazelbuild/bazel/issues/760).
# However, this stops our custom clang toolchain from picking the provided
# LLD linker, so we're only adding '-B/usr/bin' when using non-downloaded
# toolchain.
# TODO: when bazel stops adding '-B/usr/bin' by default, remove this
# flag from the CROSSTOOL completely (see
# https://github.com/bazelbuild/bazel/issues/5634)
if should_download_clang:
cuda_defines["%{linker_bin_path}"] = ""
else:
cuda_defines["%{linker_bin_path}"] = host_compiler_prefix
cuda_defines["%{linker_bin_path}"] = ""
cuda_defines["%{extra_no_canonical_prefixes_flags}"] = ""
cuda_defines["%{unfiltered_compile_flags}"] = ""