From 6e56331ed99e5b96de940dfdc53e438eef521a2e Mon Sep 17 00:00:00 2001 From: Jim Grosbach Date: Mon, 21 Mar 2011 22:15:52 +0000 Subject: Library-ize the dyld components of llvm-rtdyld. Move the dynamic linking functionality of the llvm-rtdyld program into an ExecutionEngine support library. Update llvm-rtdyld to just load an object file into memory, use the library to process it, then run the _main() function, if one is found. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128031 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt (limited to 'lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt') diff --git a/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt b/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt new file mode 100644 index 0000000000..9e53f8757e --- /dev/null +++ b/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt @@ -0,0 +1,3 @@ +add_llvm_library(LLVMRuntimeDyld + RuntimeDyld.cpp + ) -- cgit v1.2.3