bjorn3

Results 1108 comments of bjorn3

> is the code calling the function required to ensure that src and dst do not overlap? If the rust side is `&mut [u8]` then yes. If it is `*mut...

> The upshot is that if you care about address identity, you have to use static. If the const is generic it is even impossible to guarantee address identity as...

This issue is preventing rapier from working with cg_clif when simd-unstable is enabled: https://github.com/bjorn3/rustc_codegen_cranelift/issues/1361

You can pass `-j1` to cargo to build only a single crate at a time.

> passing -j1 does not help with that. As far as I understand the jobserver should be passed through to those cargo sub invocations using `CARGO_MAKEFLAGS` and thus `-j1` should...

I think I get it. I think all four cargo invocations assumed they had an implicit token from getting spawned as they normally would and thus they all thought it...

Looks like the BIOS code directly uses the BIOS interfaces to load individual sectors using `int 13h`. This is the most portable (supports SCSI, NVMe, USB, ... Especially USB is...

Why are you using `undecorated` if you need the `@4`? `import_name_type = "undecorated"` tells rustc to not generate any prefixes or suffixes to the symbol. If you want them `import_name_type...

Can you post a rust code snippet on which you are experiencing the issue and show the exact issue (linker error, other kind of compilation failure, ...)

When using a shell renaming the current directory should show the new path when printing the prompt the next time. While the prompt may temporarily be outdated. The next time...