Lines Matching refs:LLVM
14 # LLVM supported target. To OFF if it doesn't.
20 capitalized_lib STREQUAL "LLVM${t}" OR
21 capitalized_lib STREQUAL "LLVM${t}CODEGEN" OR
22 capitalized_lib STREQUAL "LLVM${t}ASMPARSER" OR
23 capitalized_lib STREQUAL "LLVM${t}ASMPRINTER" OR
24 capitalized_lib STREQUAL "LLVM${t}DISASSEMBLER" OR
25 capitalized_lib STREQUAL "LLVM${t}INFO" )
56 target_link_libraries(${executable} LLVM)
91 # Inside LLVM itself available libs are in a global property.
120 if( TARGET LLVM${c}CodeGen )
121 list(APPEND expanded_components "LLVM${c}CodeGen")
123 if( TARGET LLVM${c} )
124 list(APPEND expanded_components "LLVM${c}")
129 if( TARGET LLVM${c}AsmPrinter )
130 list(APPEND expanded_components "LLVM${c}AsmPrinter")
132 if( TARGET LLVM${c}AsmParser )
133 list(APPEND expanded_components "LLVM${c}AsmParser")
135 if( TARGET LLVM${c}Desc )
136 list(APPEND expanded_components "LLVM${c}Desc")
138 if( TARGET LLVM${c}Info )
139 list(APPEND expanded_components "LLVM${c}Info")
141 if( TARGET LLVM${c}Disassembler )
142 list(APPEND expanded_components "LLVM${c}Disassembler")
147 list(APPEND expanded_components "LLVM${LLVM_NATIVE_ARCH}CodeGen")
148 if( TARGET LLVM${LLVM_NATIVE_ARCH}Desc )
149 list(APPEND expanded_components "LLVM${LLVM_NATIVE_ARCH}Desc")
151 if( TARGET LLVM${LLVM_NATIVE_ARCH}Info )
152 list(APPEND expanded_components "LLVM${LLVM_NATIVE_ARCH}Info")
163 if( TARGET LLVM${t}AsmPrinter )
164 list(APPEND expanded_components "LLVM${t}AsmPrinter")
170 if( TARGET LLVM${t}AsmParser )
171 list(APPEND expanded_components "LLVM${t}AsmParser")
177 if( TARGET LLVM${t}Desc )
178 list(APPEND expanded_components "LLVM${t}Desc")
184 if( TARGET LLVM${t}Disassembler )
185 list(APPEND expanded_components "LLVM${t}Disassembler")
191 if( TARGET LLVM${t}Info )
192 list(APPEND expanded_components "LLVM${t}Info")
198 list(FIND capitalized_libs LLVM${capitalized} lib_idx)