Rollup merge of #53139 - danc86:riscv-no-gdb-scripts, r=petrochenkov

set emit_debug_gdb_scripts: false for riscv32imac-unknown-none target

Same as the other embedded targets, see:
https://github.com/rust-lang/rust/pull/49728

This is a temporary workaround for #44993.
This commit is contained in:
kennytm 2018-08-07 18:52:20 +08:00
commit d9e9230b1d
No known key found for this signature in database
GPG Key ID: FEF6C8051D0E013C

View File

@ -33,6 +33,7 @@ pub fn target() -> TargetResult {
executables: true,
panic_strategy: PanicStrategy::Abort,
relocation_model: "static".to_string(),
emit_debug_gdb_scripts: false,
abi_blacklist: vec![
Abi::Cdecl,
Abi::Stdcall,