diff options
author | Lang Hames <lhames@gmail.com> | 2019-10-21 22:29:29 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2019-10-21 22:29:29 +0000 |
commit | 0b4368cbfbaf477c170b76e7704ce5e745cc0178 (patch) | |
tree | 2f989910f9201b1956c7c08ba6c6c4b5e37c4552 /llvm/examples | |
parent | 97263fa2ddd21661b90085845fed61b9b5dec367 (diff) | |
download | bcm5719-llvm-0b4368cbfbaf477c170b76e7704ce5e745cc0178.tar.gz bcm5719-llvm-0b4368cbfbaf477c170b76e7704ce5e745cc0178.zip |
[examples] Add a dependency on ExecutionEngine to LLJITWithObjectCache example.
ExecutionEngine.cpp contains the anchor() for the ObjectCache base class, so we
need an explicit dependency on it.
Patch by Stephen Neuendorffer. Thanks Stephen!
llvm-svn: 375461
Diffstat (limited to 'llvm/examples')
-rw-r--r-- | llvm/examples/LLJITExamples/LLJITWithObjectCache/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/examples/LLJITExamples/LLJITWithObjectCache/CMakeLists.txt b/llvm/examples/LLJITExamples/LLJITWithObjectCache/CMakeLists.txt index 4c9680a8618..c5f8fd6a97a 100644 --- a/llvm/examples/LLJITExamples/LLJITWithObjectCache/CMakeLists.txt +++ b/llvm/examples/LLJITExamples/LLJITWithObjectCache/CMakeLists.txt @@ -1,5 +1,6 @@ set(LLVM_LINK_COMPONENTS Core + ExecutionEngine IRReader OrcJIT Support |