veloren/.cargo/config

20 lines
971 B
Plaintext
Raw Normal View History

2020-07-06 06:36:24 +00:00
[target.x86_64-unknown-linux-gnu]
rustflags = [
"-C", "link-arg=-fuse-ld=gold",
]
2020-07-06 06:36:24 +00:00
[alias]
2021-02-12 05:15:10 +00:00
csv-export = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv_export"
csv-import = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv_import"
test-server = "run --bin veloren-server-cli --no-default-features"
tracy-server = "-Zunstable-options run --bin veloren-server-cli --no-default-features --features tracy,simd --profile no_overflow"
tracy-world-server = "-Zunstable-options run --bin veloren-server-cli --features tracy,simd --profile no_overflow"
test-voxygen = "run --bin veloren-voxygen --no-default-features --features simd,egui-ui"
tracy-voxygen = "-Zunstable-options run --bin veloren-voxygen --no-default-features --features tracy,simd,egui-ui --profile no_overflow"
2020-08-07 19:27:15 +00:00
server = "run --bin veloren-server-cli"
2020-12-06 17:43:31 +00:00
dbg-voxygen = "run --bin veloren-voxygen -Zunstable-options --profile debuginfo"
2021-05-16 08:03:09 +00:00
[env]
RUSTC_FORCE_INCREMENTAL = "1"