-
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
Fix LLVM target triple for x86_64-win7-windows-msvc
#133239
Fix LLVM target triple for x86_64-win7-windows-msvc
#133239
Conversation
The vendor field needs to be `pc` rather than `win7`.
r? @Nadrieril rustbot has assigned @Nadrieril. Use |
These commits modify compiler targets. |
Context: rust-lang/cc-rs#1176 (comment). |
cc target maintainer @roblabla |
r? compiler |
This is correct. LLVM does not (ab)use the vendor field like we do. I thought we'd fixed this before but I must be misremembering. @bors r+ rollup |
Ah yes, this is my bad, some copy paste fail when I first defined the targets, which I forgot to fix ^^'. 👍 |
…iaskrgr Rollup of 3 pull requests Successful merges: - rust-lang#131904 (Stabilize const_pin_2) - rust-lang#133239 (Fix LLVM target triple for `x86_64-win7-windows-msvc`) - rust-lang#133241 (interpret: make typing_env field private) r? `@ghost` `@rustbot` modify labels: rollup
I had noticed this problem in the cc-rs repo where you were pinged for the discussion, but nothing has been done about it until now. |
Rollup merge of rust-lang#133239 - kleisauke:fix-llvm-triple-x86_64-win7-windows-msvc, r=ChrisDenton Fix LLVM target triple for `x86_64-win7-windows-msvc` The vendor field needs to be `pc` rather than `win7`.
The vendor field needs to be
pc
rather thanwin7
.