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

Commit e1b1ea3d authored by Pirama Arumuga Nainar's avatar Pirama Arumuga Nainar Committed by android-build-merger
Browse files

Merge "Disable lld for windows host modules"

am: 060c99c3

Change-Id: I8f8ec58270d1f3e5eea596e379062c7fada802d7
parents ce394e47 060c99c3
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -18,10 +18,14 @@ else
  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)
  # 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 ($(HOST_OS),darwin)
    my_use_clang_lld := false
  endif
  # http://b/110800681 - lld cannot link Android's Windows modules yet.
  ifeq ($(HOST_CROSS_OS),windows)
    my_use_clang_lld := false
  endif
endif