Skip to content

Commit

Permalink
Rollup merge of rust-lang#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
Centril authored Nov 20, 2019
2 parents 676c51a + eda67ba commit 8ca51cb
Showing 1 changed file with 3 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()
}
}

0 comments on commit 8ca51cb

Please sign in to comment.