Rob Gries

Results 23 comments of Rob Gries

Have you built with commit `51ce6c8`? I'm not able to build using that refpoint

I was able to build after the [following changes](https://github.com/robert-w-gries/specs-physics/commit/004935a09255e20fea39cab08b68d4bfd2b5f2aa)

No worries, I was able to integrate the changes from this PR + my diff into my game project and it worked well! Overall, I was very happy with the...

Use the following instead: ```diff - specs-physics = {git = "https://github.com/amethyst/specs-physics/", branch = "v0.4.0", default-features = false, features=["dim2"]} + specs-physics = {git = "https://github.com/distransient/specs-physics/", branch = "0.4.0", default-features = false,...

@shz Thank you!! This issue has been driving me crazy and it was very difficult to find the root cause. For me, the issue wasn't even different versions of the...

The dockerfile for this project is using an outdated emsdk version. There have been changes to emscripten that are incompatible with this project's current Makefile. See emscripten-core/emscripten#11977 for more details....

It looks like there still isn't a consensus on how to handle this issue. In the meantime, you could add a note in the README stating that godot-rust is not...

With latest `xargo` and nightly `rustc`, I saw the same error. To fix it, I removed all references to `compiler_bultins` in my `Xargo.toml` and `src/lib.rs`. ```diff diff --git a/Xargo.toml b/Xargo.toml...

I see that my workaround does not work if you want to use the `compiler_builtins` `mem` feature. My project uses the `rlibc` crate, which is why I could remove `compiler_builtins`...

`cargo install cargo-xbuild` and `cargo xbuild --target x86_64-rxinu.json` worked without issue for me. Was there anything else you wanted me to test? I'm not sure if I need to do...