use utls instead of go-tls
This commit is contained in:
17
build.bat
Normal file
17
build.bat
Normal file
@ -0,0 +1,17 @@
|
||||
set CGO_ENABLED=0
|
||||
mkdir bin
|
||||
cd cmd/gost
|
||||
set GOARCH=amd64
|
||||
set GOOS=windows
|
||||
go build --ldflags="-s -w" -v -x -a -o gost.exe
|
||||
move gost.exe ../../bin
|
||||
|
||||
set GOARCH=amd64
|
||||
set GOOS=linux
|
||||
go build --ldflags="-s -w" -v -x -a -o gost
|
||||
move gost ../../bin
|
||||
|
||||
set GOARCH=arm64
|
||||
set GOOS=linux
|
||||
go build --ldflags="-s -w" -v -x -a -o gost_arm64
|
||||
move gost_arm64 ../../bin
|
Reference in New Issue
Block a user