Fix flt2dec build on 16-bit targets - #163197
Merged
rust-bors[bot] merged 1 commit intoSep 23, 2026
Merged
Conversation
Collaborator
|
Some changes occurred in float parsing cc @tgross35 |
Collaborator
|
Thanks for the pull request, and welcome! The Rust Project has assigned @LawnGnome (or someone else) to review your changes, you should hear from them (or someone else) within the next two weeks. Please see the contribution instructions and our LLM policy for more information. Why was this reviewer chosen?The reviewer was selected based on:
|
Contributor
JonathanBrouwer
added a commit
to JonathanBrouwer/rust
that referenced
this pull request
Sep 23, 2026
…bit, r=tgross35 Fix flt2dec build on 16-bit targets Closes rust-lang#163158. Fixes build breakage rust-lang#162879 on the two 16-bit targets, `avr-none` and `msp430-none-elf`, by including `target_pointer_width = "16"` in all the cfg attributes for the u32 implementations for bignum and flt2dec.
This was referenced Sep 23, 2026
rust-bors Bot
pushed a commit
that referenced
this pull request
Sep 23, 2026
…uwer Rollup of 12 pull requests Successful merges: - #162177 (Properly implement the gpu-kernel ABI for amdgpu) - #163168 (std: Update `wasip3` crate dependency) - #163179 (Cleanup offload build steps) - #163194 (Remove unused `StashKey::UnderscoreForArrayLengths`) - #163198 (rename direct_const_arg! to gca!) - #163205 (Remove `suggestion_for_allocator_api`) - #162497 (document `#[rustc_dyn_incompatible_trait]`) - #162702 (regression test for unconstrained const args) - #163191 (Enhance mutable closure suggestions with as_mut() support) - #163192 (Fix Typo in `std::sys::process::unix::unsupported::wait_status` Docs) - #163196 (Remove `DiagInner::sort_span`) - #163197 (Fix flt2dec build on 16-bit targets)
rust-bors Bot
pushed a commit
that referenced
this pull request
Sep 23, 2026
Rollup merge of #163197 - amari-ca:amarica/fix-bignum-on-16-bit, r=tgross35 Fix flt2dec build on 16-bit targets Closes #163158. Fixes build breakage #162879 on the two 16-bit targets, `avr-none` and `msp430-none-elf`, by including `target_pointer_width = "16"` in all the cfg attributes for the u32 implementations for bignum and flt2dec.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #163158.
Fixes build breakage #162879 on the two 16-bit targets,
avr-noneandmsp430-none-elf, by includingtarget_pointer_width = "16"in all the cfg attributes for the u32 implementations for bignum and flt2dec.