Uh oh!
There was an error while loading. Please reload this page.
Reduce default configuration's dependency upon static libstdcpp library (#103606) - #104245
Reduce default configuration's dependency upon static libstdcpp library (#103606)#104245kubycsolutions wants to merge 2 commits into
Conversation
rustbot
commented
Nov 10, 2022
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @jyn514 (or someone else) soon. Please see the contribution instructions for more information. |
This comment has been minimized.
This comment has been minimized.
jyn514
left a comment
There was a problem hiding this comment.
this looks good! r=me if my fix gets CI to pass :)
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
jyn514
commented
Nov 10, 2022
looks like it got past |
the8472
commented
Nov 10, 2022
The PR title could be better, I think that ends up in the git history. |
kubycsolutions
commented
Nov 10, 2022
PR title/description improved; thanks for catching that. |
jyn514
commented
Nov 10, 2022
@bors r+ |
bors
commented
Nov 10, 2022
📌 Commit 84585b466a14d5f1cca889f105a08186b9083818 has been approved by It is now in the queue for this repository. |
fbstj
commented
Nov 10, 2022
this still needs squashing? |
kubycsolutions
commented
Nov 10, 2022
When I now try to run "git rebase --interactive master", the control file comes up with "noop" where I would expect to see a list of commits. But I'm still seeing 6 commits at the top of this page. So I'm not sure what my current state is... (This is one reason my group was using the "squash as you merge" option -- it does seem to offer fewer opportunities for error.) |
Usually, we do want to use the static C++ library when building rustc_llvm, but do not want to have that dependency at compiler runtime. Change the defaults to Make It So.
kubycsolutions
commented
Nov 11, 2022
Should now be squashed. |
jyn514
commented
Nov 11, 2022
@bors r- r+ |
bors
commented
Nov 11, 2022
Reduce default configuration's dependency upon static libstdcpp library (rust-lang#103606) Fixesrust-lang#103606 Remove default dependency on static libstdcpp except during dist llvm builds (where we want static libraries so `libLLVM.so` is self-contained).
jyn514
commented
Nov 11, 2022
@kubycsolutions you don't need to make any further changes to this PR, it's already been approved :) |
kubycsolutions
commented
Nov 11, 2022
There had been grumbles about it not being Squashed, and I was having a bit of trouble remembering the syntax for that.... Should be done with it now, |
Rollup of 9 pull requests Successful merges: - rust-lang#100633 (Consider `#[must_use]` annotation on `async fn` as also affecting the `Future::Output`) - rust-lang#103445 (`#[test]`: Point at return type if `Termination` bound is unsatisfied) - rust-lang#103924 (Fix broken link in description of error code E0706) - rust-lang#104146 (Retry binding TCP Socket in remote-test-server) - rust-lang#104169 (Migrate `:target` rules to use CSS variables) - rust-lang#104202 (Fix ICE rust-lang#103748) - rust-lang#104216 (Don't ICE on operator trait methods with generic methods) - rust-lang#104217 (Display help message when fluent arg was referenced incorrectly) - rust-lang#104245 (Reduce default configuration's dependency upon static libstdcpp library (rust-lang#103606)) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
jyn514
commented
Nov 11, 2022
Merged in #104289 |
Fixes#103606
Remove default dependency on static libstdcpp except during dist llvm builds (where we want static libraries so
libLLVM.sois self-contained).