mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
454 B
22 lines
454 B
SUPPORTED_MATRIX = [
|
|
("windows", "amd64"),
|
|
("windows", "386"),
|
|
("darwin", "amd64"),
|
|
("linux", "amd64"),
|
|
("linux", "386"),
|
|
("linux", "arm64"),
|
|
("linux", "arm"),
|
|
("linux", "mips64"),
|
|
("linux", "mips"),
|
|
("linux", "mips64le"),
|
|
("linux", "mipsle"),
|
|
("linux", "ppc64"),
|
|
("linux", "ppc64le"),
|
|
("linux", "s390x"),
|
|
("freebsd", "amd64"),
|
|
("freebsd", "386"),
|
|
("openbsd", "amd64"),
|
|
("openbsd", "386"),
|
|
("dragonfly", "amd64"),
|
|
]
|