Johan Anderholm
Johan Anderholm
Hairy indeed! It might be possible to do something with the cargo rustc command. I just tried the following: $ cat .cargo/config [target.thumbv7neon-unknown-linux-gnueabihf] rustflags = ["--sysroot=/path/to/target/sysroot"] $ cargo rustc --target...
You're right. I my particular case I'm using the global cargo config and then it works. But not for crate specific configs. It also doesn't seem to be possible to...
Pulseaudio uses a cookie for authentication. It is available in `~/.config/pulse/cookie` and needs to be copied to the container. It's not entirely straightforward to do this as the cookie has...
In my opinion the target generation needs to rewritten entirely since it doesn't work very well. It should be possible to map -mcpu and or -march to the proper CPU...
Another possibility is to not use rpath but instead use `/etc/ld.so.conf`. We could do what `meta/recipes-extended/bash/bash.inc` does to append to `/etc/shells` I know using rpath is usually frowned upon for...
@cardoe No I did some testing but couldn't get it to work so I abandoned it.
If you use "devtool modify" to develop the package the cargo cache is used between compilations. It will however need to rebuild from scratch when you update the SRCREV resulting...
For what it's worth, I reused the exact same certificate bundle that works on the phone with no luck.
It seems that the tests or the test environment is sketchy. The tests pass every time when I run locally but the linux tests fail on travis. The osx tests...
An option to honor target-dir would be great. In some CI environments [build.target-dir](https://doc.rust-lang.org/cargo/reference/config.html#buildtarget-dir) is used to separate the build and source directory completely. The source tree may for example be...