We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fed46ff commit 1dd0a01Copy full SHA for 1dd0a01
compiler/rustc_target/src/spec/base/nto_qnx.rs
@@ -12,6 +12,9 @@ pub(crate) fn opts() -> TargetOptions {
12
has_thread_local: false,
13
linker: Some("qcc".into()),
14
os: "nto".into(),
15
+ // We want backtraces to work by default and they rely on unwind tables
16
+ // (regardless of `-C panic` strategy).
17
+ default_uwtable: true,
18
position_independent_executables: true,
19
static_position_independent_executables: true,
20
relro_level: RelroLevel::Full,
0 commit comments