meta-rust-bin
meta-rust-bin copied to clipboard
Yocto layer for installing Rust toolchain from pre-built binaries
my custom recipe could be built under dunfell before. after I switch to hardknott, it reported: `doesn't have GNU_HASH (didn't pass LDFLAGS?) [ldflags]` I added `LDFLAGS` into RUST_FLAGS
Rust support was added to open embedded-core in the 3.4 honister release. This change just adds a note to the README file.
oe-core now has Rust integrated, so there's eg `cargo.bbclass` in oe-core. This layer should merge any improvements it has into oe-core, and remove the classes. Ideally, it would simply be...
Fix #11
Hey folks, I just noticed that the layer doesn't load correctly the classes on Honister and that made the layer to brake the parsing. I made simple formatting modifications based...
The PR #82 solved the linking error I had (issue #70) but using this layer on master has raised another issue: ``` | /home/otavio/src/updatehub/yocto/build/tmp/work/core2-64-oel-linux/updatehub/1.1.90-r0/target/release/build/proc-macro2-378cfb6b48440bd3/build-script-build: /usr/lib/libc.so.6: version `GLIBC_2.32' not found (required...
What information should I include in my recipe, do tell yocto which version of rust it should use? E.g. I want my code to compile with Rust 1.43.0, (e.g. because...
At least for me, the current master branch does not work on a honister version of poky: ``` ERROR: ExpansionError during parsing /build/source/poky/../meta-rust-bin/recipes-devtools/rust/rust-bin-cross_1.54.0.bb | ETA: 0:00:45Traceback (most recent call last):...
I want to target compile RedisJSON https://github.com/RedisJSON/RedisJSON Building machine OS: Ubuntu 18.04.5 LTS Target MACHINE is var-som-mx6 (NXP i.MX6Q) Added meta-rust-bin layer in build/conf/bblayers.conf On host OS build pass just...
Adapted from #75 Presumably there is a large crossover between people using meta-rust-bin and people who need to interface C with Rust. Providing a "paved path" for using bindgen would...
Is it the case at the moment, that any package using a [build script](https://doc.rust-lang.org/cargo/reference/build-scripts.html) will not compile? With an empty project, it seems that as soon as I add a...