Skip to content

Commit

Permalink
Disable gdb pretty printer global section on wasm targets
Browse files Browse the repository at this point in the history
The wasm targets don't support gdb anyway so there's no need for this
section there.
  • Loading branch information
alexcrichton committed Dec 5, 2019
1 parent fdc0011 commit 5ce09bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/librustc_target/spec/wasm32_base.rs
Expand Up @@ -140,6 +140,9 @@ pub fn options() -> TargetOptions {
has_elf_tls: true,
tls_model: "local-exec".to_string(),

// gdb scripts don't work on wasm blobs
emit_debug_gdb_scripts: false,

.. Default::default()
}
}
2 changes: 2 additions & 0 deletions src/test/codegen/gdb_debug_script_load.rs
@@ -1,6 +1,8 @@
// ignore-tidy-linelength
// ignore-windows
// ignore-macos
// ignore-wasm
// ignore-emscripten

// compile-flags: -g -C no-prepopulate-passes

Expand Down

0 comments on commit 5ce09bc

Please sign in to comment.