about summary refs log tree commit diff
path: root/src/test/run-make/execution-engine/Makefile
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-06-09 04:28:57 +0000
committerbors <bors@rust-lang.org>2015-06-09 04:28:57 +0000
commit71a8d313c8351771dc5507dde14f654ca4f0707d (patch)
treeb428370aa123041e946c1275471ad6be32bff79b /src/test/run-make/execution-engine/Makefile
parenta35ea4d35837c5cffbf4fe81c00e94092c35d5fe (diff)
parent021e48326db304559a74f2f338d511f9674d0da7 (diff)
downloadrust-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/Makefile8
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))