From 2e2765eec02e62308814012b39c91088dd026b12 Mon Sep 17 00:00:00 2001 From: Peter Ammon Date: Thu, 24 Oct 2024 21:24:56 -0700 Subject: [PATCH] Remove .cargo/config.toml This added link args to target macOS 10.9, but these arguments are not necessary when building via the make_pkg.sh script, and this file is causing other problems. --- .cargo/config.toml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml deleted file mode 100644 index 3d7169bbc..000000000 --- a/.cargo/config.toml +++ /dev/null @@ -1,8 +0,0 @@ -# For macOS, support 10.9 on x86-64, and 11.0 on aarch64, which -# is the minimum supported version for Apple Silicon. -[target.x86_64-apple-darwin] -rustflags = ["-C", "link-arg=-mmacosx-version-min=10.9"] - -[target.aarch64-apple-darwin] -rustflags = ["-C", "link-arg=-mmacosx-version-min=11.0"] -