diff options
author | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2019-10-19 16:40:26 +0000 |
---|---|---|
committer | Nemanja Ivanovic <nemanja.i.ibm@gmail.com> | 2019-10-19 16:40:26 +0000 |
commit | 7d8ea71677f6b9985d4bbe5112067d5d48414383 (patch) | |
tree | 794ea7c818d99498b1b9d51f3fa47ff7d8d27ab6 | |
parent | 0a15981a84b9988ad7dce01cf81ea1d7cb022b82 (diff) | |
download | bcm5719-llvm-7d8ea71677f6b9985d4bbe5112067d5d48414383.tar.gz bcm5719-llvm-7d8ea71677f6b9985d4bbe5112067d5d48414383.zip |
[ARM] Add dependency on GlobalISel for unit tests to fix shared libs build
The unit test uses GlobalISel but the dependency is not listed in the
CMakeLists.txt file which causes failures in shared libs build with GCC.
This just adds the dependency.
Differential revision: https://reviews.llvm.org/D69064
llvm-svn: 375346
-rw-r--r-- | llvm/unittests/Target/ARM/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/unittests/Target/ARM/CMakeLists.txt b/llvm/unittests/Target/ARM/CMakeLists.txt index 443c5253289..1634c8cb36e 100644 --- a/llvm/unittests/Target/ARM/CMakeLists.txt +++ b/llvm/unittests/Target/ARM/CMakeLists.txt @@ -8,6 +8,7 @@ set(LLVM_LINK_COMPONENTS ARMDesc ARMInfo CodeGen + GlobalISel MC SelectionDAG Support |