diff options
| author | Patrick Walton <[email protected]> | 2011-03-15 14:57:26 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-03-15 14:58:11 -0700 |
| commit | 736969f9fe49b17174c6e06fbb7b1a8331ca94b2 (patch) | |
| tree | 762d10760333efd5c9db1bf81007c7c78081fa30 /src/Makefile | |
| parent | Change the numbering of upcall functions. upcall_0 now calls a function (diff) | |
| download | rust-736969f9fe49b17174c6e06fbb7b1a8331ca94b2.tar.xz rust-736969f9fe49b17174c6e06fbb7b1a8331ca94b2.zip | |
rustc: Add support for LLVM memory buffer creation via a wrapper function
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 5c93cf71..67a8743e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -311,7 +311,8 @@ RUNTIME_HDR := rt/globals.h \ RUNTIME_INCS := -Irt/isaac -Irt/uthash RUNTIME_OBJS := $(RUNTIME_CS:.cpp=.o) -SUPPORT_CS := llvmext/MachOObjectFile.cpp llvmext/Object.cpp +SUPPORT_CS := $(addprefix llvmext/, \ + MachOObjectFile.cpp Object.cpp RustWrapper.cpp) SUPPORT_HDR := llvmext/include/llvm-c/Object.h |