Merge "Use $(my_prefix)OS instead of HOST_CROSS_OS"

am: 69af20f184

Change-Id: I9006ed1815f52f31a05ec9eb190672fc0d0b3da9
This commit is contained in:
Pirama Arumuga Nainar
2018-06-27 13:14:30 -07:00
committed by android-build-merger

View File

@@ -18,14 +18,12 @@ else
endif
endif
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
# 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 ($($(my_prefix)OS),darwin)
my_use_clang_lld := false
endif
# http://b/110800681 - lld cannot link Android's Windows modules yet.
ifeq ($($(my_prefix)OS),windows)
my_use_clang_lld := false
endif