Skip to content

Commit

Permalink
Auto merge of #66520 - alexcrichton:disable-gdb-wasm, r=eddyb
Browse files Browse the repository at this point in the history
Disable gdb pretty printer global section on wasm targets

The wasm targets don't support gdb anyway so there's no need for this
section there.
  • Loading branch information
bors committed Dec 5, 2019
2 parents aeaaf8f + 5ce09bc commit d825e35
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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 d825e35

Please sign in to comment.