-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Align {i686,x86_64}-win7-windows-msvc
to their parent targets
#134611
base: master
Are you sure you want to change the base?
Conversation
These commits modify compiler targets. |
compiler/rustc_target/src/spec/targets/x86_64_win7_windows_msvc.rs
Outdated
Show resolved
Hide resolved
There were some changes to `{i686,x86_64}-pc-windows-msvc`, include them in the backward compatibility targets as well.
c3ec9ff
to
237dea3
Compare
base.cpu = "x86-64".into(); | ||
base.plt_by_default = false; | ||
base.max_atomic_width = Some(64); | ||
base.vendor = "win7".into(); | ||
base.supported_sanitizers = SanitizerSet::ADDRESS; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure the sanitizers work on win7, though I guess it won't hurt to have this if they aren't used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
r? jieyouxu @bors r+ rollup |
There were some changes to
{i686,x86_64}-pc-windows-msvc
, include them in the backward compatibility targets as well.CC @roblabla