Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29adef4e authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by Gerrit Code Review
Browse files

Merge "Disable LLD for Darwin host executables."

parents 50958e2c 3365ae72
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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