Skip to content

Commit

Permalink
Fix broken fast build file link (#931)
Browse files Browse the repository at this point in the history
  • Loading branch information
Henriquelay authored Feb 8, 2024
1 parent b6b01c0 commit dde240f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/learn/quick-start/getting-started/setup/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ Bevy can be built just fine using default configuration on stable Rust. However

* **Generic Sharing**: Allows crates to share monomorphized generic code instead of duplicating it. In some cases this allows us to "precompile" generic code so it doesn't affect iterative compiles. This is only available on nightly Rust.
To enable fast compiles, install the nightly rust compiler and LLD. Then copy the contents of [this file](https://github.com/bevyengine/bevy/blob/main/.cargo/config_fast_builds) to `YOUR_WORKSPACE/.cargo/config.toml`. For the project in this guide, that would be `my_bevy_game/.cargo/config.toml`.
To enable fast compiles, install the nightly rust compiler and LLD. Then copy the contents of [this file](https://github.com/bevyengine/bevy/blob/main/.cargo/config_fast_builds.toml) to `YOUR_WORKSPACE/.cargo/config.toml`. For the project in this guide, that would be `my_bevy_game/.cargo/config.toml`.
If something went wrong, check out our [troubleshooting section](/learn/quick-start/troubleshooting/) or [ask for help on our Discord](https://discord.gg/bevy).
Expand Down

0 comments on commit dde240f

Please sign in to comment.