From cc2bd110643265cd06ab749ad2b3da58b4de66a3 Mon Sep 17 00:00:00 2001 From: Stephen Hines Date: Thu, 14 May 2015 11:11:09 -0700 Subject: Fix Android.mk files for plugins on darwin. Darwin uses a few different flags for this than Linux, and we missed this when we updated the test builds recently. Change-Id: I8a0e8bc18ef698a0ed933f96b2bce0653f4307e5 (cherry picked from commit 651de8d5ac0b28b10ad0259efc75cf6152dc13dc) --- lib/Transforms/Hello/Android.mk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib') diff --git a/lib/Transforms/Hello/Android.mk b/lib/Transforms/Hello/Android.mk index e2d6163..6a09237 100644 --- a/lib/Transforms/Hello/Android.mk +++ b/lib/Transforms/Hello/Android.mk @@ -13,6 +13,10 @@ include $(CLEAR_VARS) LOCAL_SRC_FILES := $(transforms_hello_SRC_FILES) LOCAL_MODULE:= LLVMHello +ifeq ($(HOST_OS),darwin) +LOCAL_LDFLAGS := -Wl,-undefined -Wl,dynamic_lookup +endif + LOCAL_MODULE_TAGS := optional include $(LLVM_HOST_BUILD_MK) -- cgit v1.1