We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents adb7c3f + 70ee124 commit c70f3d3Copy full SHA for c70f3d3
1 file changed
src/global_asm.rs
@@ -235,6 +235,9 @@ pub(crate) fn compile_global_asm(
235
.arg("-")
236
.arg("-Abad_asm_style")
237
.arg("-Zcodegen-backend=llvm")
238
+ // JSON targets currently require `-Zunstable-options`
239
+ // Tracking issue: https://github.com/rust-lang/rust/issues/151528
240
+ .arg("-Zunstable-options")
241
.stdin(Stdio::piped())
242
.spawn()
243
.expect("Failed to spawn `as`.");
0 commit comments