From 33c8da07bf87055762cfc5ba0a0defdd1b2e3d12 Mon Sep 17 00:00:00 2001 From: Logan McNaughton <848146+loganmc10@users.noreply.github.com> Date: Sat, 23 May 2026 07:17:23 +0200 Subject: [PATCH] Update linker settings in config.toml Remove linker configuration for macOS and consolidate for Windows. --- .cargo/config.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index fd989a34..57c552af 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,10 +1,8 @@ [target.'cfg(all(target_arch = "aarch64", target_os = "linux"))'] rustflags = ["-C", "link-arg=-fuse-ld=lld"] -[target.'cfg(any(target_os = "windows", target_os = "macos"))'] -linker = "rust-lld" - [target.'cfg(target_os = "windows")'] +linker = "rust-lld" rustflags = ["-C", "link-arg=/STACK:8388608"] [target.'cfg(target_arch = "x86_64")']