forked from openkylin/platform_build
Merge "Disable LLD for Darwin host executables."
This commit is contained in:
commit
29adef4ec2
|
@ -12,3 +12,11 @@ ifeq (,$(filter 0 false,$(LOCAL_USE_CLANG_LLD)))
|
|||
my_use_clang_lld := true
|
||||
endif
|
||||
endif
|
||||
|
||||
# Do not use LLD for Darwin host executables or shared libraries.
|
||||
# See https://lld.llvm.org/AtomLLD.html for status of lld for Mach-O.
|
||||
ifeq ($(LOCAL_IS_HOST_MODULE),true)
|
||||
ifeq ($(HOST_OS),darwin)
|
||||
my_use_clang_lld := false
|
||||
endif
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue