Files
jaarg/jaarg-nostd/.cargo/config.toml

13 lines
357 B
TOML
Raw Normal View History

2025-11-07 06:41:34 +11:00
[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"