Skip to content

Commit

Permalink
Removing outdated note about Windows support for dynamic_linking (#628)
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Hansen <mail@paul.rs>
  • Loading branch information
zendril and paul-hansen authored May 8, 2023
1 parent 7bef416 commit b7e03ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/learn/book/getting-started/setup/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ You might think to simply develop in release mode instead, but we recommend agai

Bevy can be built just fine using default configuration on stable Rust. However for maximally fast iterative compiles, we recommend the following configuration:

* **Enable Bevy's Dynamic Linking Feature**: This is the most impactful compilation time decrease! If `bevy` is a dependency, you can compile the binary with the "dynamic" feature flag (enables dynamic linking). Note that right now, this doesn't work on Windows.
* **Enable Bevy's Dynamic Linking Feature**: This is the most impactful compilation time decrease! If `bevy` is a dependency, you can compile the binary with the "dynamic_linking" feature flag (enables dynamic linking). **Important!** On Windows you _must_ also enable the [perfomance optimizations](#compile-with-performance-optimizations) or you will get a [`too many exported symbols`](https://github.com/bevyengine/bevy/issues/1110#issuecomment-1312926923) error.

```sh
cargo run --features bevy/dynamic_linking
Expand Down

0 comments on commit b7e03ba

Please sign in to comment.