summaryrefslogtreecommitdiff
path: root/unittests/ExecutionEngine/MCJIT/Makefile
diff options
context:
space:
mode:
authorAndrew Kaylor <andrew.kaylor@intel.com>2012-10-04 20:29:44 +0000
committerAndrew Kaylor <andrew.kaylor@intel.com>2012-10-04 20:29:44 +0000
commit2d6d585c85ce8c56461f17b7b49fff24eed7b8fb (patch)
treeb09a3aee52d9f5648bab543d4fe84050d9ffbe6e /unittests/ExecutionEngine/MCJIT/Makefile
parent55977f6c37d72b318237369cd463b772b089d620 (diff)
downloadllvm-2d6d585c85ce8c56461f17b7b49fff24eed7b8fb.tar.gz
llvm-2d6d585c85ce8c56461f17b7b49fff24eed7b8fb.tar.bz2
llvm-2d6d585c85ce8c56461f17b7b49fff24eed7b8fb.tar.xz
Adding MCJIT and MemoryBuffer unit tests
Patch by Daniel Malea. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165246 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ExecutionEngine/MCJIT/Makefile')
-rw-r--r--unittests/ExecutionEngine/MCJIT/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/unittests/ExecutionEngine/MCJIT/Makefile b/unittests/ExecutionEngine/MCJIT/Makefile
new file mode 100644
index 0000000000..454f83099d
--- /dev/null
+++ b/unittests/ExecutionEngine/MCJIT/Makefile
@@ -0,0 +1,18 @@
+##===- unittests/ExecutionEngine/MCJIT/Makefile ------------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LEVEL = ../../..
+TESTNAME = MCJIT
+LINK_COMPONENTS := core jit mcjit native support
+
+include $(LEVEL)/Makefile.config
+include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
+
+# Permit these tests to use the MCJIT's symbolic lookup.
+LD.Flags += $(RDYNAMIC)