Craig McQueen

Results 60 comments of Craig McQueen

I've been caught out by this bug in version 1.97. Is this bug still present?

if ((Pos + Block * 45 + BlockOffset) > IspEnvironment->BinaryLength) Should that `>` be `>=`?

> Just tested OBS 27.1.3 and it looks like the issue is still there. It looks to be a bug in the `v4l2loopback` kernel driver. The issue isn't really in...

I'm encountering this issue while building a Rust project for aarch64. The project is based on the Rocket web server, v0.5-rc. I had no problems until I added the crate...

I'm comparing my Yocto `poky/build/tmp/work/aarch64-poky-linux/libstd-rs/1.54.0-r0/packages-split/libstd-rs-dev/usr/lib/rust` to my `~/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/aarch64-unknown-linux-gnu/lib`, seeing what `*.rlib` are there. The local rustup dir has these that are not in the Yocto poky dir: * `libgetopts` *...

@jwinarske wrote: > In my case what's odd is that it's attempting to link a cross compiled libproc_macro. Libproc_macro should only ever be host. and also > Given proc_macros are...

``` $ readelf -h libproc_macro-3f1222cb41e97635.rlib File: libproc_macro-3f1222cb41e97635.rlib(proc_macro-3f1222cb41e97635.proc_macro.3f08mrfg-cgu.0.rcgu.o) ELF Header: Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00 Class: ELF64 Data: 2's...

> Is this a public project you can share? No, it's private for my employer. But, I'll see if I can make a "Minimal Reproducible Example" (MRE).

Here's a minimal example: 1. `cargo new warp-hello` 2. In `Cargo.toml`, add: ``` [dependencies] askama = "0.10.5" tokio = { version = "1.13.0", features = ["full"] } warp = {...

@jwinarske [wrote](https://github.com/meta-rust/meta-rust/issues/266#issuecomment-942816084): > Changing libstd-rs to libtest has no affect `S` gets overwritten in `libstd-rs_1.54.0.bb` etc since rust 1.47+. So try changing it in `libstd-rs_1.54.0.bb` rather than `libstd-rs.inc`: ``` patch...