From 564f88fee50f8d3240f2afda571b15892cba6d48 Mon Sep 17 00:00:00 2001 From: Xevion Date: Thu, 24 Jul 2025 00:00:15 -0500 Subject: [PATCH] ci: use proper vcpkg triplet for linux, macos --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c7b32f7..44365d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,8 @@ rev = "2024.05.24" # release 2024.05.24 # to check for a new one, check https:// [package.metadata.vcpkg.target] x86_64-pc-windows-msvc = { triplet = "x64-windows-static-md" } -x86_64-unknown-linux-gnu = { triplet = "x86_64-unknown-linux-gnu" } +x86_64-unknown-linux-gnu = { triplet = "x64-linux" } +# x86_64-apple-darwin = { triplet = "x64-osx-release" } [target.'cfg(target_os = "emscripten")'.dependencies] libc = "0.2.16"