vscode/cli/.cargo/config.toml

7 lines
447 B
TOML
Raw Normal View History

2024-11-15 06:29:18 +00:00
[target.'cfg(all(target_os = "windows", any(target_arch = "i686", target_arch = "x86_64", target_arch = "x86")))']
rustflags = ["-Ctarget-feature=+crt-static", "-Clink-args=/guard:cf", "-Clink-args=/CETCOMPAT"]
# CETCOMPAT is not supported on ARM binaries
[target.'cfg(all(target_os = "windows", not(any(target_arch = "i686", target_arch = "x86_64", target_arch = "x86"))))']
rustflags = ["-Ctarget-feature=+crt-static", "-Clink-args=/guard:cf"]