Files
netch/Other/aiodns/build.ps1
2021-08-14 04:49:50 +08:00

12 lines
300 B
PowerShell

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