mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 19:47:38 +00:00
fix debuginfo for windows_gnullvm_base.rs
These lines (including the FIXME comment) were added to windows_gnu_base.rs in cf2c492ef8
but windows_gnullvm_base.rs was not updated. This resulted in an error `LLVM ERROR: dwo only supported with ELF and Wasm` attempting to build on aarch64-pc-windows-gnullvm.
Signed-off-by: Jeremy Drake <github@jdrake.com>
This commit is contained in:
parent
1e1e5b8d98
commit
6994651b6c
@ -1,4 +1,5 @@
|
|||||||
use crate::spec::{cvs, Cc, LinkerFlavor, Lld, TargetOptions};
|
use crate::spec::{cvs, Cc, DebuginfoKind, LinkerFlavor, Lld, SplitDebuginfo, TargetOptions};
|
||||||
|
use std::borrow::Cow;
|
||||||
|
|
||||||
pub fn opts() -> TargetOptions {
|
pub fn opts() -> TargetOptions {
|
||||||
// We cannot use `-nodefaultlibs` because compiler-rt has to be passed
|
// We cannot use `-nodefaultlibs` because compiler-rt has to be passed
|
||||||
@ -36,7 +37,10 @@ pub fn opts() -> TargetOptions {
|
|||||||
eh_frame_header: false,
|
eh_frame_header: false,
|
||||||
no_default_libraries: false,
|
no_default_libraries: false,
|
||||||
has_thread_local: true,
|
has_thread_local: true,
|
||||||
|
// FIXME(davidtwco): Support Split DWARF on Windows GNU - may require LLVM changes to
|
||||||
|
// output DWO, despite using DWARF, doesn't use ELF..
|
||||||
|
debuginfo_kind: DebuginfoKind::Pdb,
|
||||||
|
supported_split_debuginfo: Cow::Borrowed(&[SplitDebuginfo::Off]),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user