forked from OSchip/llvm-project
[bazel] Use lld in --config=generic_clang
This should give us faster links. Differential Revision: https://reviews.llvm.org/D131723
This commit is contained in:
parent
3f2f23cca9
commit
76b1e8365a
|
@ -45,6 +45,10 @@ build:generic_clang --cxxopt=-Wno-range-loop-analysis --host_cxxopt=-Wno-range-l
|
|||
# not the point of the Bazel build to catch usage of deprecated APIs.
|
||||
build:generic_clang --copt=-Wno-deprecated --host_copt=-Wno-deprecated
|
||||
|
||||
# lld links faster than other linkers. Assume that anybody using clang also has
|
||||
# lld available.
|
||||
build:generic_clang --linkopt=-fuse-ld=lld --host_linkopt=-fuse-ld=lld
|
||||
|
||||
###############################################################################
|
||||
# Options for "generic_gcc" builds: these options should generally apply to
|
||||
# builds using a GCC-based compiler, and default to the `gcc` executable on
|
||||
|
|
Loading…
Reference in New Issue