dinghy
dinghy copied to clipboard
Easier cross-compilation for phones and single boards computers
I'm testing my rust project with dinghy 0.6.0 on iOS and I think there's a duplicate executable file: ```bash $ du -sh * 13M Dinghy 4.0K Info.plist 24K _CodeSignature 13M...
Tried the following on my iPad (1st generation, iOS 9.3.6), not sure if this is a Dinghy error or a rustc error? ```rust // main.rs fn main() { let res...
`cargo dinghy --platform auto-ios-aarch64-sim run --example foo` where `foo` is an example. This is a relatively nuanced use of dinghy but I was trying to run an example on an...
https://github.com/sonos/dinghy/blob/6604727223a42817edd31a9c656a6a4b0572b11c/dinghy-lib/src/platform/regular_platform.rs#L81 homebrew musl install `brew install FiloSottile/musl-cross/musl-cross --with-aarch64` put several arch in `/usr/local/opt/musl-cross/libexec/` dinghy just picks the first.
Hello! We are trying to use dinghy to cross-compile and run benchmarks on android (and on the raspberry pi in the future). Previously we have built the project with the...
baremetal targets do not have any sysroot, as a consequence no TARGET_SYSROOT exists for those targets. this change make the presence of TARGET_SYSROOT mandatory: https://github.com/snipsco/dinghy/blob/dinghy-test/0.4.21/dinghy-build/src/bindgen_macros.rs#L48 this break the compilation on...
they should be named against the libraries instead steps to reproduce : - create a platform definition named `device` - create an overlay named 'mylib' with no *.pc and just...
It would be great if, like the libc-crate does: https://github.com/rust-lang/libc/blob/master/ci/ios/deploy_and_run_on_ios_simulator.rs#L59 dinghy could start an ios-simulator. Maybe dinghy could: * have an option to list all simulators installed * have an...
I always getting error `no valid simulator instance` but sim is already started and initially detected by dinghy. ``` Finished dev [unoptimized + debuginfo] target(s) in 35.92 secs (lldb) command...
Targeting Raspberry Pi is definitely cool, but what about going further to ARMv7M ?!) Investigating it right now - but if you see any obvious immediate blockers that I'm missing,...