aboutsummaryrefslogtreecommitdiffstats
path: root/tools/bugpoint-passes
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2015-05-14 11:11:09 -0700
committerStephen Hines <srhines@google.com>2015-06-08 13:59:13 -0700
commitcc2bd110643265cd06ab749ad2b3da58b4de66a3 (patch)
treea7d7216840cf2591103e6afb85787f4fda13aec6 /tools/bugpoint-passes
parent560a17f4e3f8019a108abb7848a4735c59a43be0 (diff)
downloadexternal_llvm-cc2bd110643265cd06ab749ad2b3da58b4de66a3.zip
external_llvm-cc2bd110643265cd06ab749ad2b3da58b4de66a3.tar.gz
external_llvm-cc2bd110643265cd06ab749ad2b3da58b4de66a3.tar.bz2
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)
Diffstat (limited to 'tools/bugpoint-passes')
-rw-r--r--tools/bugpoint-passes/Android.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/bugpoint-passes/Android.mk b/tools/bugpoint-passes/Android.mk
index 51b35c7..bd09c69 100644
--- a/tools/bugpoint-passes/Android.mk
+++ b/tools/bugpoint-passes/Android.mk
@@ -15,6 +15,9 @@ LOCAL_MODULE := BugpointPasses
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_CLASS := SHARED_LIBRARIES # needed for tblgen
+ifeq ($(HOST_OS),darwin)
+LOCAL_LDFLAGS := -Wl,-undefined -Wl,dynamic_lookup
+endif
include $(LLVM_HOST_BUILD_MK)
include $(LLVM_GEN_INTRINSICS_MK)