1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

[RISCV] Fix shared libs build

Commit a2d19bad07454ae7936d8f2b8482e24d57954fc4 introduced a
dependency in the RISCV disassembler on two additional libraries
(MC, RISCVDesc) which wasn't added to the CMakeLists.txt. This
causes shared library builds to break. This patch just adds them
to fix failures seen on some bots, such as the PPC64LE Multistage.
This commit is contained in:
Nemanja Ivanovic 2021-02-09 06:11:45 -06:00
parent bae3751cc6
commit 31865eefa6

View File

@ -2,7 +2,9 @@ add_llvm_component_library(LLVMRISCVDisassembler
RISCVDisassembler.cpp
LINK_COMPONENTS
MC
MCDisassembler
RISCVDesc
RISCVInfo
Support