mirror of
https://github.com/gay-pizza/jaarg.git
synced 2025-12-19 07:20:18 +00:00
13 lines
357 B
TOML
13 lines
357 B
TOML
|
|
[target.'cfg(target_os = "macos")']
|
||
|
|
rustflags = ["-Cpanic=abort", "-C", "link-args=-lSystem"]
|
||
|
|
[target.'cfg(target_family = "windows")']
|
||
|
|
rustflags = ["-Cpanic=abort", "-C", "target-feature=+crt-static"]
|
||
|
|
[target.'cfg(target_os = "linux")']
|
||
|
|
rustflags = ["-Cpanic=abort", "-C", "link-args=-lc"]
|
||
|
|
|
||
|
|
[profile.dev]
|
||
|
|
panic = "abort"
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
panic = "abort"
|