File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
src/bootstrap/src/core/build_steps Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,13 @@ pub fn initialize_available_targets() {
188188 LLVMInitializeHexagonAsmPrinter ,
189189 LLVMInitializeHexagonAsmParser
190190 ) ;
191+ init_target ! (
192+ llvm_component = "xtensa" ,
193+ LLVMInitializeXtensaTargetInfo ,
194+ LLVMInitializeXtensaTarget ,
195+ LLVMInitializeXtensaTargetMC ,
196+ LLVMInitializeXtensaAsmParser
197+ ) ;
191198 init_target ! (
192199 llvm_component = "webassembly" ,
193200 LLVMInitializeWebAssemblyTargetInfo ,
Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ impl Step for Llvm {
330330
331331 let llvm_exp_targets = match builder. config . llvm_experimental_targets {
332332 Some ( ref s) => s,
333- None => "AVR;M68k;CSKY" ,
333+ None => "AVR;M68k;CSKY;Xtensa " ,
334334 } ;
335335
336336 let assertions = if builder. config . llvm_assertions { "ON" } else { "OFF" } ;
You can’t perform that action at this time.
0 commit comments