File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 57
57
# support. You'll need to write a target specification at least, and most
58
58
# likely, teach rustc about the C ABI of the target. Get in touch with the
59
59
# Rust team and file an issue if you need assistance in porting!
60
- #targets = "AArch64;ARM;Hexagon;MSP430;Mips;NVPTX;PowerPC;RISCV;Sparc;SystemZ;X86"
60
+ #targets = "AArch64;ARM;Hexagon;MSP430;Mips;NVPTX;PowerPC;RISCV;Sparc;SystemZ;WebAssembly; X86"
61
61
62
62
# LLVM experimental targets to build support for. These targets are specified in
63
63
# the same format as above, but since these targets are experimental, they are
64
64
# not built by default and the experimental Rust compilation targets that depend
65
- # on them will not work unless the user opts in to building them. By default the
66
- # `WebAssembly` target is enabled when compiling LLVM from scratch.
67
- #experimental-targets = "WebAssembly"
65
+ # on them will not work unless the user opts in to building them.
66
+ #experimental-targets = ""
68
67
69
68
# Cap the number of parallel linker invocations when compiling LLVM.
70
69
# This can be useful when building LLVM with debug info, which significantly
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ impl Step for Llvm {
125
125
} else {
126
126
match builder. config . llvm_targets {
127
127
Some ( ref s) => s,
128
- None => "AArch64;ARM;Hexagon;MSP430;Mips;NVPTX;PowerPC;RISCV;Sparc;SystemZ;X86" ,
128
+ None => "AArch64;ARM;Hexagon;MSP430;Mips;NVPTX;PowerPC;RISCV;Sparc;SystemZ;WebAssembly; X86" ,
129
129
}
130
130
} ;
131
131
@@ -134,7 +134,7 @@ impl Step for Llvm {
134
134
} else {
135
135
match builder. config . llvm_experimental_targets {
136
136
Some ( ref s) => s,
137
- None => "WebAssembly " ,
137
+ None => "" ,
138
138
}
139
139
} ;
140
140
You can’t perform that action at this time.
0 commit comments