2
0
Fork 0
mirror of https://github.com/bevyengine/bevy synced 2025-03-06 16:27:25 +00:00
bevy/.cargo/config_fast_builds

17 lines
659 B
Text
Raw Normal View History

# Rename this file to `config` to enable "fast build" configuration. Please read the notes below.
# NOTE: For maximum performance, build using a nightly compiler
2020-06-08 10:08:36 -07:00
# If you are using rust stable, remove the "-Zshare-generics=y" below.
2020-01-21 03:11:16 -08:00
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
2020-05-31 23:18:24 -07:00
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Zshare-generics=y"]
[target.x86_64-apple-darwin]
rustflags = ["-Zshare-generics=y"]
2020-05-31 23:18:24 -07:00
# NOTE: you must manually install lld on windows. you can easily do this with the "scoop" package manager:
# `scoop install llvm`
[target.x86_64-pc-windows-msvc]
linker = "lld-link.exe"
rustflags = ["-Clinker=lld", "-Zshare-generics=y"]