Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show all available triplets on server

Tags:

vcpkg

Commnad below show 7zip library available on server:

vcpkg search 7zip 

How to list all available triplets on remote?

like image 901
vico Avatar asked Sep 13 '25 19:09

vico


1 Answers

vcpkg triplets are configurations that specify how to build a package for a target environment (OS-architecture-linkage).

The term triplet is a bit confusing, since there can be more to a triplet than these 3 values. For instance target compiler or whether or not the crt is linked dynamically or statically.

The informal way to view the available triplets that ship with vcpkg is:

vcpkg install 7zip --triplet=""

The install command will then list available triplets.

like image 106
Elad Maimoni Avatar answered Sep 15 '25 23:09

Elad Maimoni