Stabilize the `-Csplit-debuginfo` flag... - ...on Linux for all values of the flag. Split DWARF has been implemented for a few months, hasn't had any bug reports and has had some promising benchmarking for incremental debug build performance. - ..on other platforms for the default value. It doesn't make any sense that `-Csplit-debuginfo=packed` is unstable on Windows MSVC when that's the default behaviour, but keep the other values unstable. Signed-off-by: David Wood <david.wood@huawei.com>
21 lines
622 B
Rust
21 lines
622 B
Rust
use crate::spec::{cvs, RelroLevel, SplitDebuginfo, TargetOptions};
|
|
use std::borrow::Cow;
|
|
|
|
pub fn opts() -> TargetOptions {
|
|
TargetOptions {
|
|
os: "linux".into(),
|
|
dynamic_linking: true,
|
|
families: cvs!["unix"],
|
|
has_rpath: true,
|
|
position_independent_executables: true,
|
|
relro_level: RelroLevel::Full,
|
|
has_thread_local: true,
|
|
crt_static_respected: true,
|
|
supported_split_debuginfo: Cow::Borrowed(&[
|
|
SplitDebuginfo::Packed,
|
|
SplitDebuginfo::Unpacked,
|
|
SplitDebuginfo::Off,
|
|
]),
|
|
..Default::default()
|
|
}
|
|
}
|