Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable Rust to use the EHCont security feature of Windows #118013

Merged
merged 4 commits into from
Nov 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
x.py fmt
  • Loading branch information
Arlie Davis committed Nov 21, 2023
commit d582f1092b524ed8aff86193928a1c7f871b11cf
6 changes: 1 addition & 5 deletions src/bootstrap/src/core/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2178,11 2178,7 @@ impl<'a> Builder<'a> {
}

// Only execute if it's supposed to run as default
if desc.default && should_run.is_really_default() {
self.ensure(step)
} else {
None
}
if desc.default && should_run.is_really_default() { self.ensure(step) } else { None }
}

/// Checks if any of the "should_run" paths is in the `Builder` paths.
Expand Down
Loading