forked from OSchip/llvm-project
Add TransformUtils to list of required libraries for llc
This dependency was added in r254774 llvm-svn: 254786
This commit is contained in:
parent
b3eef01eda
commit
68b309a306
|
@ -11,6 +11,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
SelectionDAG
|
||||
Support
|
||||
Target
|
||||
TransformUtils
|
||||
)
|
||||
|
||||
# Support plugins.
|
||||
|
|
|
@ -19,4 +19,4 @@
|
|||
type = Tool
|
||||
name = llc
|
||||
parent = Tools
|
||||
required_libraries = AsmParser BitReader IRReader MIRParser all-targets
|
||||
required_libraries = AsmParser BitReader IRReader MIRParser TransformUtils all-targets
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
LEVEL := ../..
|
||||
TOOLNAME := llc
|
||||
LINK_COMPONENTS := all-targets bitreader asmparser irreader mirparser
|
||||
LINK_COMPONENTS := all-targets bitreader asmparser irreader mirparser transformutils
|
||||
|
||||
# Support plugins.
|
||||
NO_DEAD_STRIP := 1
|
||||
|
|
Loading…
Reference in New Issue