You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you cannot get Bevy to build or run on your machine, please include:
Rust version: rustc 1.65.0-nightly (happens with stable as well)
What you did
I was following the setup instructions here.
However, I wasn't able to cargo run --features bevy/dynamic successfully. Following this issue, I added the following lines to my config.toml to disable share generics, but didn't see any change after re-running the sample:
When I ran cargo run --features bevy/dynamic, I got a segmentation fault:
error: process didn't exit successfully: target\debug\examples\breakout.exe (exit code: 0xc0000005, STATUS_ACCESS_VIOLATION)
Segmentation fault
Additional information
I don't see this issue when running an empty Hello World project with Bevy as a dependency. I'm also quite new to Rust so I could be missing something simple!
Edit: If I run the sample with nothing in my config.toml, I get the following error instead: note: LINK : fatal error LNK1189: library limit of 65535 objects exceeded
The text was updated successfully, but these errors were encountered:
There is a compatibility issue between ldd and the xinput dll that bevy depends on with llvm and microsoft blaming each other for this issue I believe. You can either disable the bevy_gilrs feature or switch away from lld.
Bevy version
0.8.1
Relevant system information
If you cannot get Bevy to build or run on your machine, please include:
Rust version: rustc 1.65.0-nightly (happens with stable as well)
What you did
I was following the setup instructions here.
However, I wasn't able to
cargo run --features bevy/dynamic
successfully. Following this issue, I added the following lines to my config.toml to disable share generics, but didn't see any change after re-running the sample:What went wrong
When I ran cargo run --features bevy/dynamic, I got a segmentation fault:
error: process didn't exit successfully:
target\debug\examples\breakout.exe
(exit code: 0xc0000005, STATUS_ACCESS_VIOLATION)Segmentation fault
Additional information
I don't see this issue when running an empty Hello World project with Bevy as a dependency. I'm also quite new to Rust so I could be missing something simple!
Edit: If I run the sample with nothing in my config.toml, I get the following error instead:
note: LINK : fatal error LNK1189: library limit of 65535 objects exceeded
The text was updated successfully, but these errors were encountered: