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.
14 lines
539 B
14 lines
539 B
9 years ago
|
#!/bin/bash
|
||
|
|
||
9 years ago
|
go install github.com/v2ray/v2ray-core/tools/build
|
||
|
|
||
|
$GOPATH/bin/build --os=windows --arch=x86 --zip
|
||
|
$GOPATH/bin/build --os=windows --arch=x64 --zip
|
||
|
$GOPATH/bin/build --os=macos --arch=x64 --zip
|
||
|
$GOPATH/bin/build --os=linux --arch=x86 --zip
|
||
|
$GOPATH/bin/build --os=linux --arch=x64 --zip
|
||
|
$GOPATH/bin/build --os=linux --arch=arm --zip
|
||
|
$GOPATH/bin/build --os=linux --arch=arm64 --zip
|
||
9 years ago
|
$GOPATH/bin/build --os=linux --arch=mips64 --zip
|
||
8 years ago
|
$GOPATH/bin/build --os=freebsd --arch=x86 --zip
|
||
|
$GOPATH/bin/build --os=freebsd --arch=amd64 --zip
|