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 Nov 18, 2019
1 parent a0d40f8 commit eda67ba
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 eda67ba

Please sign in to comment.