-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
configure: allow distros to disable debuginfo-only-std #43297
Conversation
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
The implication is that I'll need to disable those explicitly, right? |
Right. Though in Debian I'm only passing I had assumed that |
The failing travis check seems to be due to an HTTP error page being retrieved instead of a script:
40/41 of the other build jobs passed. |
Sure. Only the "long" travis check is important. |
@bors: r+ Thanks! |
📌 Commit ffae5de has been approved by |
@bors rollup |
⌛ Testing commit ffae5de with merge bb5ab534d986a0e4e189732fb561c9aa412a0688... |
💔 Test failed - status-appveyor |
@bors: retry
…On Wed, Jul 19, 2017 at 4:33 AM, bors ***@***.***> wrote:
💔 Test failed - status-appveyor
<https://ci.appveyor.com/project/rust-lang/rust/build/1.0.3979>
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#43297 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AaPN0C85I6LFrqYQu_VVa9HXW43BJX_Lks5sPc1ZgaJpZM4OagES>
.
--
You received this message because you are subscribed to the Google Groups
"rust-ops" group.
To unsubscribe from this group and stop receiving emails from it, send an
email to ***@***.***
To post to this group, send email to ***@***.***
To view this discussion on the web visit https://groups.google.com/d/
msgid/rust-ops/rust-lang/rust/pull/43297/c316328489%40github.com
<https://groups.google.com/d/msgid/rust-ops/rust-lang/rust/pull/43297/c316328489%40github.com?utm_medium=email&utm_source=footer>
.
For more options, visit https://groups.google.com/d/optout.
|
@nagbot-rs: 🔑 Insufficient privileges: and not in try users |
@bors: retry |
⌛ Testing commit ffae5de with merge 18d40d93e64191ccc9f2b8fd0c895ace028803e3... |
💔 Test failed - status-travis |
@bors retry
|
configure: allow distros to disable debuginfo-only-std This allows builders to generate debugging information for everything, even in a stable release build. This is useful for distros like Fedora (already carrying a [similar patch](https://src.fedoraproject.org/cgit/rpms/rust.git/tree/rust-1.16.0-configure-no-override.patch)) and Debian that automatically put all debuginfo in separate "debug symbol" packages. This commit preserves the default behaviour of switching these on when a non-dev channel is selected, but allows the user to override this via the `./configure` command line. In theory, one could also do this via `bootstrap/config.toml` but it doesn't work currently due to rust-lang#43295.
configure: allow distros to disable debuginfo-only-std This allows builders to generate debugging information for everything, even in a stable release build. This is useful for distros like Fedora (already carrying a [similar patch](https://src.fedoraproject.org/cgit/rpms/rust.git/tree/rust-1.16.0-configure-no-override.patch)) and Debian that automatically put all debuginfo in separate "debug symbol" packages. This commit preserves the default behaviour of switching these on when a non-dev channel is selected, but allows the user to override this via the `./configure` command line. In theory, one could also do this via `bootstrap/config.toml` but it doesn't work currently due to rust-lang#43295.
This allows builders to generate debugging information for everything, even in a stable release build. This is useful for distros like Fedora (already carrying a similar patch) and Debian that automatically put all debuginfo in separate "debug symbol" packages.
This commit preserves the default behaviour of switching these on when a non-dev channel is selected, but allows the user to override this via the
./configure
command line.In theory, one could also do this via
bootstrap/config.toml
but it doesn't work currently due to #43295.