Files
netch/Other/tap2socks/build.ps1
2021-08-14 04:51:34 +08:00

12 lines
283 B
PowerShell

Push-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
$Env:CGO_ENABLED='0'
$Env:GOROOT_FINAL='/usr'
$Env:GOOS='windows'
$Env:GOARCH='amd64'
go build -a -trimpath -asmflags '-s -w' -ldflags '-s -w' -o '..\release\tap2socks.exe'
Pop-Location
exit $lastExitCode