mirror of
https://github.com/xiaoqidun/alive.git
synced 2026-01-16 00:51:37 +08:00
3 lines
283 B
Bash
3 lines
283 B
Bash
#!/bin/bash
|
|
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o release/alive_amd64.exe -trimpath -ldflags "-H windowsgui -s -w -buildid=" alive.go
|
|
GOOS=windows GOARCH=arm64 CGO_ENABLED=0 go build -o release/alive_arm64.exe -trimpath -ldflags "-H windowsgui -s -w -buildid=" alive.go |