summary refs log tree commit diff
path: root/src/test/run-make/execution-engine/Makefile
AgeCommit message (Collapse)AuthorLines
2015-12-13Better support for `--llvm-root`.Richard Diamond-0/+7
This handles cases when the LLVM used isn't configured will the 'usual' targets. Also, cases where LLVM is shared are also handled (ie with `LD_LIBRARY_PATH` etc).
2015-07-08this fixes the test failures on freebsdDave Huseby-0/+6
2015-06-08Changes to LLVM `ExecutionEngine` wrapperMurarth-0/+8
* 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.