We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdc0011 commit 5ce09bcCopy full SHA for 5ce09bc
src/librustc_target/spec/wasm32_base.rs
@@ -140,6 +140,9 @@ pub fn options() -> TargetOptions {
140
has_elf_tls: true,
141
tls_model: "local-exec".to_string(),
142
143
+ // gdb scripts don't work on wasm blobs
144
+ emit_debug_gdb_scripts: false,
145
+
146
.. Default::default()
147
}
148
src/test/codegen/gdb_debug_script_load.rs
@@ -1,6 +1,8 @@
1
// ignore-tidy-linelength
2
// ignore-windows
3
// ignore-macos
4
+// ignore-wasm
5
+// ignore-emscripten
6
7
// compile-flags: -g -C no-prepopulate-passes
8
0 commit comments