summaryrefslogtreecommitdiff
path: root/xmake/modules/package
diff options
context:
space:
mode:
authorruki <[email protected]>2024-04-28 16:19:54 +0800
committerGitHub <[email protected]>2024-04-28 16:19:54 +0800
commit5f1a07e6f343a67ed53a30d302eea916fc069e91 (patch)
treeab70ff240e6e3ae8bdd5c4dffc1cc4ee2a7e7a1a /xmake/modules/package
parent61498e2197e74a0d77bfad7472eefcc6ea565e45 (diff)
parent66421508282ec5b34dd66916c41a894c2ebd4ccb (diff)
Merge pull request #5023 from SHIINASAMA/master
vcpkg dynamic triplet
Diffstat (limited to 'xmake/modules/package')
-rw-r--r--xmake/modules/package/manager/vcpkg/configurations.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/xmake/modules/package/manager/vcpkg/configurations.lua b/xmake/modules/package/manager/vcpkg/configurations.lua
index df79e1bd2..12bc5f5bd 100644
--- a/xmake/modules/package/manager/vcpkg/configurations.lua
+++ b/xmake/modules/package/manager/vcpkg/configurations.lua
@@ -56,6 +56,17 @@ function triplet(configs, plat, arch)
if configs.runtimes and configs.runtimes:startswith("MD") then
triplet = triplet .. "-md"
end
+ elseif plat == "linux" then
+ -- x64-linux-dynamic
+ if arch == "x64" and configs.shared then
+ triplet = triplet .. "-dynamic"
+ end
+ elseif plat == "osx" then
+ -- x64-osx-dynamic
+ -- arm64-osx-dynamic
+ if (arch == "x64" or arch == "arm64") and configs.shared then
+ triplet = triplet .. "-dynamic"
+ end
elseif plat == "mingw" then
triplet = triplet .. (configs.shared ~= true and "-static" or "-dynamic")
end