Skip to content
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

Update jemalloc to 4.5.0 #43911

Merged
merged 1 commit into from
Aug 20, 2017
Merged

Update jemalloc to 4.5.0 #43911

merged 1 commit into from
Aug 20, 2017

Conversation

arthurprs
Copy link
Contributor

Second try, including the fix for osx deadlock jemalloc/jemalloc#895.

cc #41861 @alexcrichton @RalfJung

@rust-highfive
Copy link
Collaborator

r? @alexcrichton

(rust_highfive has picked a reviewer for you, use r? to override)

@alexcrichton
Copy link
Member

@bors: r+

@bors
Copy link
Contributor

bors commented Aug 16, 2017

📌 Commit 519cf15 has been approved by alexcrichton

@aidanhs aidanhs added the S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. label Aug 16, 2017
@bors
Copy link
Contributor

bors commented Aug 18, 2017

⌛ Testing commit 519cf15 with merge 2d7e3a8d1896c39fc0c3cd12733c654995e6bbea...

@bors
Copy link
Contributor

bors commented Aug 18, 2017

💔 Test failed - status-appveyor

@kennytm
Copy link
Member

kennytm commented Aug 18, 2017

@bors retry

Network issue, failed to download InnoSetup.

Progress: Downloading InnoSetup 5.5.9.20161208... 4%InnoSetup not installed. An error occurred during installation:
 The operation has timed out.
InnoSetup package files install completed. Performing other installation steps.
The install of InnoSetup was NOT successful.
InnoSetup not installed. An error occurred during installation:
 The operation has timed out.

@bors
Copy link
Contributor

bors commented Aug 18, 2017

⌛ Testing commit 519cf15 with merge 7ae3f86a3abfef2d9d306b2b3418319c32415692...

@bors
Copy link
Contributor

bors commented Aug 18, 2017

💔 Test failed - status-appveyor

@kennytm
Copy link
Member

kennytm commented Aug 18, 2017

InnoSetup failed. Still seems to be a spurious issue http://help.appveyor.com/discussions/problems/7409-chocolatey-timeout-when-installing-openssh, but I'm not gonna retry on the 3rd strike.

@bors retry

@bors
Copy link
Contributor

bors commented Aug 19, 2017

⌛ Testing commit 519cf15 with merge cadbe40dfee6b7d2b0bcbfd86a083dd746824397...

@bors
Copy link
Contributor

bors commented Aug 19, 2017

💔 Test failed - status-appveyor

@RalfJung
Copy link
Member

RalfJung commented Aug 19, 2017

Progress: Downloading chocolatey-core.extension 1.3.1... 5%InnoSetup not installed. An error occurred during installation:
 The operation has timed out.
InnoSetup package files install completed. Performing other installation steps.
The install of InnoSetup was NOT successful.
InnoSetup not installed. An error occurred during installation:
 The operation has timed out.
Chocolatey installed 0/1 packages. 1 packages failed.

It retries two times and fails each time. But it seems like most PRs are failing with this error currently (well, both of the ones that I am subscribed to did). Looks like rust development is halted until AppVeyor gets their stuff fixed...

@kennytm
Copy link
Member

kennytm commented Aug 19, 2017

@bors retry p=-1 #43985

@bors
Copy link
Contributor

bors commented Aug 19, 2017

⌛ Testing commit 519cf15 with merge 64d30c8a2a427b6341f99dde57c938add43d6556...

@bors
Copy link
Contributor

bors commented Aug 19, 2017

💔 Test failed - status-appveyor

@kennytm
Copy link
Member

kennytm commented Aug 20, 2017

@bors retry p=0 #43402

@bors
Copy link
Contributor

bors commented Aug 20, 2017

⌛ Testing commit 519cf15 with merge 5fa54ee...

bors added a commit that referenced this pull request Aug 20, 2017
Update jemalloc to 4.5.0

Second try, including the fix for osx deadlock jemalloc/jemalloc#895.

cc #41861 @alexcrichton @RalfJung
@bors
Copy link
Contributor

bors commented Aug 20, 2017

☀️ Test successful - status-appveyor, status-travis
Approved by: alexcrichton
Pushing 5fa54ee to master...

@bors bors merged commit 519cf15 into rust-lang:master Aug 20, 2017
netbsd-srcmastr pushed a commit to NetBSD/pkgsrc that referenced this pull request Nov 3, 2017
Changelog:
Version 1.21.0 (2017-10-12)
==========================

Language
--------
- [You can now use static references for literals.][43838]
  Example:
  ```rust
  fn main() {
      let x: &'static u32 = &0;
  }
  ```
- [Relaxed path syntax. Optional `::` before `<` is now allowed in all contexts.][43540]
  Example:
  ```rust
  my_macro!(Vec<i32>::new); // Always worked
  my_macro!(Vec::<i32>::new); // Now works
  ```

Compiler
--------
- [Upgraded jemalloc to 4.5.0][43911]
- [Enabled unwinding panics on Redox][43917]
- [Now runs LLVM in parallel during translation phase.][43506]
  This should reduce peak memory usage.

Libraries
---------
- [Generate builtin impls for `Clone` for all arrays and tuples that
  are `T: Clone`][43690]
- [`Stdin`, `Stdout`, and `Stderr` now implement `AsRawFd`.][43459]
- [`Rc` and `Arc` now implement `From<&[T]> where T: Clone`, `From<str>`,
  `From<String>`, `From<Box<T>> where T: ?Sized`, and `From<Vec<T>>`.][42565]

Stabilized APIs
---------------

[`std::mem::discriminant`]

Cargo
-----
- [You can now call `cargo install` with multiple package names][cargo/4216]
- [Cargo commands inside a virtual workspace will now implicitly
  pass `--all`][cargo/4335]
- [Added a `[patch]` section to `Cargo.toml` to handle
  prepublication dependencies][cargo/4123] [RFC 1969]
- [`include` & `exclude` fields in `Cargo.toml` now accept gitignore
  like patterns][cargo/4270]
- [Added the `--all-targets` option][cargo/4400]
- [Using required dependencies as a feature is now deprecated and emits
  a warning][cargo/4364]


Misc
----
- [Cargo docs are moving][43916]
  to [doc.rust-lang.org/cargo](https://doc.rust-lang.org/cargo)
- [The rustdoc book is now available][43863]
  at [doc.rust-lang.org/rustdoc](https://doc.rust-lang.org/rustdoc)
- [Added a preview of RLS has been made available through rustup][44204]
  Install with `rustup component add rls-preview`
- [`std::os` documentation for Unix, Linux, and Windows now appears on doc.rust-lang.org][43348]
  Previously only showed `std::os::unix`.

Compatibility Notes
-------------------
- [Changes in method matching against higher-ranked types][43880] This may cause
  breakage in subtyping corner cases. [A more in-depth explanation is available.][info/43880]
- [rustc's JSON error output's byte position start at top of file.][42973]
  Was previously relative to the rustc's internal `CodeMap` struct which
  required the unstable library `libsyntax` to correctly use.
- [`unused_results` lint no longer ignores booleans][43728]

[42565]: rust-lang/rust#42565
[42973]: rust-lang/rust#42973
[43348]: rust-lang/rust#43348
[43459]: rust-lang/rust#43459
[43506]: rust-lang/rust#43506
[43540]: rust-lang/rust#43540
[43690]: rust-lang/rust#43690
[43728]: rust-lang/rust#43728
[43838]: rust-lang/rust#43838
[43863]: rust-lang/rust#43863
[43880]: rust-lang/rust#43880
[43911]: rust-lang/rust#43911
[43916]: rust-lang/rust#43916
[43917]: rust-lang/rust#43917
[44204]: rust-lang/rust#44204
[cargo/4123]: rust-lang/cargo#4123
[cargo/4216]: rust-lang/cargo#4216
[cargo/4270]: rust-lang/cargo#4270
[cargo/4335]: rust-lang/cargo#4335
[cargo/4364]: rust-lang/cargo#4364
[cargo/4400]: rust-lang/cargo#4400
[RFC 1969]: rust-lang/rfcs#1969
[info/43880]: rust-lang/rust#44224 (comment)
[`std::mem::discriminant`]: https://doc.rust-lang.org/std/mem/fn.discriminant.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants