-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Compile statically against the MSVC CRT #3363
Conversation
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
4b936aa
to
3392ae2
Compare
☔ The latest upstream changes (presumably #3395) made this pull request unmergeable. Please resolve the merge conflicts. |
This updates our AppVeyor builds to compile with `-Ctarget-feature=+crt-static` to help Cargo be a bit more portable and not rely on the MSVC redistributable artifacts. Over time this may even let us converge on only releasing one build of Cargo and just pairing that with all Windows toolchains...
@bors: r+ |
📌 Commit db60e6c has been approved by |
⌛ Testing commit db60e6c with merge ff5ae77... |
💔 Test failed - status-appveyor |
@bors: retry
…On Tue, Dec 13, 2016 at 3:14 PM, bors ***@***.***> wrote:
💔 Test failed - status-appveyor
<https://ci.appveyor.com/project/rust-lang-libs/cargo/build/1.0.587>
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#3363 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAD95HHkztXjFkxUQ-WRENbwErsReL9vks5rHyblgaJpZM4LDD-a>
.
|
Compile statically against the MSVC CRT This updates our AppVeyor builds to compile with `-Ctarget-feature=+crt-static` to help Cargo be a bit more portable and not rely on the MSVC redistributable artifacts. Over time this may even let us converge on only releasing one build of Cargo and just pairing that with all Windows toolchains...
☀️ Test successful - status-appveyor, status-travis |
Is there a way to specify a |
Not currently, no. It needs to be specified as part of |
I see. Thanks anyway |
This updates our AppVeyor builds to compile with
-Ctarget-feature=+crt-static
to help Cargo be a bit more portable and not rely on the MSVC redistributable
artifacts. Over time this may even let us converge on only releasing one build
of Cargo and just pairing that with all Windows toolchains...