[PATCH] D69064: [ARM] Add dependency on GlobalISel for unit tests to fix shared libs build
Nemanja Ivanovic via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 16 12:22:01 PDT 2019
nemanjai created this revision.
nemanjai added reviewers: t.p.northover, tstellar.
Herald added subscribers: Petar.Avramovic, kristof.beyls, rovka, mgorny.
Herald added a project: LLVM.
The shared libraries build fails due to a missing dependency. This just adds it. It is NFC otherwise.
Repository:
rL LLVM
https://reviews.llvm.org/D69064
Files:
unittests/CodeGen/CMakeLists.txt
unittests/Target/ARM/CMakeLists.txt
Index: unittests/Target/ARM/CMakeLists.txt
===================================================================
--- unittests/Target/ARM/CMakeLists.txt
+++ unittests/Target/ARM/CMakeLists.txt
@@ -12,6 +12,7 @@
SelectionDAG
Support
Target
+ GlobalISel
)
add_llvm_unittest(ARMTests
Index: unittests/CodeGen/CMakeLists.txt
===================================================================
--- unittests/CodeGen/CMakeLists.txt
+++ unittests/CodeGen/CMakeLists.txt
@@ -9,6 +9,7 @@
SelectionDAG
Support
Target
+ GlobalISel
)
add_llvm_unittest(CodeGenTests
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69064.225286.patch
Type: text/x-patch
Size: 581 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191016/36366891/attachment.bin>
More information about the llvm-commits
mailing list