diff options
| author | bors <bors@rust-lang.org> | 2015-06-09 04:28:57 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-06-09 04:28:57 +0000 |
| commit | 71a8d313c8351771dc5507dde14f654ca4f0707d (patch) | |
| tree | b428370aa123041e946c1275471ad6be32bff79b /src/test/run-make/execution-engine/Makefile | |
| parent | a35ea4d35837c5cffbf4fe81c00e94092c35d5fe (diff) | |
| parent | 021e48326db304559a74f2f338d511f9674d0da7 (diff) | |
| download | rust-71a8d313c8351771dc5507dde14f654ca4f0707d.tar.gz rust-71a8d313c8351771dc5507dde14f654ca4f0707d.zip | |
Auto merge of #25627 - murarth:execution-engine-fix, r=nrc
* Removes `RustJITMemoryManager` from public API. This was really sort of an implementation detail to begin with. * `__morestack` is linked to C++ wrapper code and this pointer is used when resolving the symbol for `ExecutionEngine` code. * `__morestack_addr` is also resolved for `ExecutionEngine` code. This function is sometimes referenced in LLVM-generated code, but was not able to be resolved on Mac OS systems. * Added Windows support to `ExecutionEngine` API. * Added a test for basic `ExecutionEngine` functionality.
Diffstat (limited to 'src/test/run-make/execution-engine/Makefile')
| -rw-r--r-- | src/test/run-make/execution-engine/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/run-make/execution-engine/Makefile b/src/test/run-make/execution-engine/Makefile new file mode 100644 index 00000000000..387905f45d8 --- /dev/null +++ b/src/test/run-make/execution-engine/Makefile @@ -0,0 +1,8 @@ +-include ../tools.mk + +# This is a basic test of LLVM ExecutionEngine functionality using compiled +# Rust code built using the `rustc` crate. + +all: + $(RUSTC) test.rs + $(call RUN,test $(RUSTC)) |
