You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it used to but it must have broke. The following turns into a wall of code:
let cfilename = cinfo.ident;
let cdata = cinfo.data;
// Claim this crate number and cache it
let cnum = e.next_crate_num;
e.crate_cache.insert(ident, cnum);
e.next_crate_num += 1;
// Now resolve the crates referenced by this crate
let cnum_map = resolve_crate_deps(e, cdata);
let cmeta = {name: ident, data: cdata, cnum_map: cnum_map};
The text was updated successfully, but these errors were encountered:
Add dl_iterate_phdr and related types
A lot of this is more broadly supported than just Linux, but support for
those can be added later.
r? @alexcrichton
bors
pushed a commit
to rust-lang-ci/rust
that referenced
this issue
Oct 26, 2020
…rust-lang#842)
* re-stabilize the AVX-512 features that were stabilized in Rust 1.27.0
rust-lang/stdarch#739 added per-feature
stabilization of runtime CPU feature detection. In so doing, it
de-stabilized some detection features that had been stable since Rust
1.27.0, breaking some published crates (on nightly). This commit
re-stabilizes the subset of AVX-512 detection features that were
included in 1.27.0 (that is, the pre-Ice-Lake subset). Other instruction
sets (MMX in particular) remain de-stabilized, pending a decision about
whether should ever stabilize them.
See rust-lang#68905.
* add a comment explaining feature detection stability
* adjust stabilizations to match most recent proposal
rust-lang#68905 (comment)
I think it used to but it must have broke. The following turns into a wall of code:
The text was updated successfully, but these errors were encountered: