From 1cb19a4470533be84eb61e8f5fc40aa9d45f86f9 Mon Sep 17 00:00:00 2001 From: Jim Grosbach Date: Fri, 18 Mar 2011 17:11:39 +0000 Subject: MachO file loader and execution utility. Add a bone-simple utility to load a MachO object into memory, look for a function (main) in it, and run that function directly. This will be used as a test and development platform for MC-JIT work regarding symbol resolution, dynamic lookup, etc.. Code by Daniel Dunbar. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127885 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile index 731024763b..5960433127 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -13,19 +13,20 @@ LEVEL := .. OPTIONAL_PARALLEL_DIRS := clang # Build LLDB if present. Note LLDB must be built last as it depends on the -# wider LLVM infrastructure (including Clang). +# wider LLVM infrastructure (including Clang). OPTIONAL_DIRS := lldb # NOTE: The tools are organized into five groups of four consisting of one # large and three small executables. This is done to minimize memory load # in parallel builds. Please retain this ordering. -DIRS := llvm-config +DIRS := llvm-config PARALLEL_DIRS := opt llvm-as llvm-dis \ llc llvm-ranlib llvm-ar llvm-nm \ llvm-ld llvm-prof llvm-link \ lli llvm-extract llvm-mc \ bugpoint llvm-bcanalyzer llvm-stub \ - llvmc llvm-diff macho-dump llvm-objdump + llvmc llvm-diff macho-dump llvm-objdump \ + llvm-rtdyld # Let users override the set of tools to build from the command line. ifdef ONLY_TOOLS -- cgit v1.2.3