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
JohnTitor committed Nov 19, 2019
2 parents 12834ff + eda67ba commit 11a8ca4
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 11a8ca4

Please sign in to comment.