add missing dependency for ExecutionEngine lib
authorSanjay Patel <spatel@rotateright.com>
Mon, 1 Jun 2015 21:56:56 +0000 (21:56 +0000)
committerSanjay Patel <spatel@rotateright.com>
Mon, 1 Jun 2015 21:56:56 +0000 (21:56 +0000)
This appears to be masked most of the time, but the problem
was exposed on some bots by r238051.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238788 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/ExecutionEngineBindings.cpp
lib/ExecutionEngine/LLVMBuild.txt

index 97d7b97fdfebca923efbb601102bc514339dbd2f..55ab5af2b9098d32b4edc54451cba88b7dbac7fd 100644 (file)
@@ -18,6 +18,7 @@
 #include "llvm/IR/DerivedTypes.h"
 #include "llvm/IR/Module.h"
 #include "llvm/Support/ErrorHandling.h"
+#include "llvm/Target/TargetOptions.h"
 #include <cstring>
 
 using namespace llvm;
index 8509852b652e7cc4bba0003c4b8aa1a1ad9b4d84..9d29a41f504137ee4f5002595f44bc2726e7e279 100644 (file)
@@ -22,4 +22,4 @@ subdirectories = Interpreter MCJIT RuntimeDyld IntelJITEvents OProfileJIT Orc
 type = Library
 name = ExecutionEngine
 parent = Libraries
-required_libraries = Core MC Object RuntimeDyld Support
+required_libraries = Core MC Object RuntimeDyld Support Target