Philipp Schuster
Philipp Schuster
I'm developing a bare-metal x86_64 binary, or better to say the initial roottask running under a microkernel. If I have a callstack of `a -> b -> c`, I'd like...
btw, I fixed the latest (unrelated) clippy error as well.
any update here? @tyranron @JelteF
Related issue from 2019: https://github.com/rust-lang/rust/issues/61721
Disabling the `simd`-feature doesn't change anything, unfortunately.
~In the meantime, I found out that the problem originates in `hashbrown`-dependency.~ ~Not when building the library but when building an executable, that uses it. Minimal example:~ ```rust fn main()...
@Hugo4IT the workaround is to either use the crate without the simd-feature and soft-float or to pre-render all characters, such as https://crates.io/crates/noto-sans-mono-bitmap does it
@Hugo4IT @mooman219 this is a bug by Rust when using the "+soft-float" feature on x86. more info: https://github.com/rust-lang/rust/issues/62729
in upcoming lowpass-filter release, it will say, that `biquad` is a better alternative
Thanks @pedrocr ! Wow, parsing RAW files is more complicated than I initially expected Where do you have all the background knowledge from for all the calculations you do? For...