You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Equivalent to Clang's `-mstack-protector-guard=*`. Allows configuring
how the stack canary is accessed (global, TLS, or system register),
which must be consistent across the crate graph.
Copy file name to clipboardExpand all lines: compiler/rustc_session/src/options.rs
+43Lines changed: 43 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -852,6 +852,8 @@ mod desc {
852
852
pub(crate)const parse_stack_protector:&str =
853
853
"one of (`none` (default), `basic`, `strong`, or `all`)";
854
854
pub(crate)const parse_branch_protection:&str = "a `,` separated combination of `bti`, `gcs`, `pac-ret`, (optionally with `pc`, `b-key`, `leaf` if `pac-ret` is set)";
0 commit comments