This commit is contained in:
parent
cab6c605ab
commit
763acd0ad8
3 changed files with 3 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
[target.x86_64-unknown-linux-gnu]
|
||||
linker = "clang"
|
||||
# TODO: Share generics when using nightly no longer causes an undefined symbol error
|
||||
rustflags = ["-C", "link-arg=-fuse-ld=/usr/bin/mold"] #, "-Zshare-generics=y"]
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
[toolchain]
|
||||
# TODO: Switch back to nightly when it no longer causes an undefined symbol error
|
||||
channel = "stable" # "nightly"
|
||||
|
|
|
@ -66,7 +66,7 @@ fn run_app(settings: AppSettings) -> AppExit {
|
|||
..default()
|
||||
}),
|
||||
PhysicsPlugins::default().with_length_unit(50.0),
|
||||
EntropyPlugin::<WyRand>::with_seed(seed.0.to_le_bytes()), // TODO: Tried to make and Into<[u8; 8]> for this but it wants to consume the value
|
||||
EntropyPlugin::<WyRand>::with_seed(seed.0.to_le_bytes()), // TODO: Tried to make an Into<[u8; 8]> for this but it wants to consume the value
|
||||
))
|
||||
.add_systems(
|
||||
Startup,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue