13 lines
270 B
Bash
13 lines
270 B
Bash
:
|
|
set -x
|
|
|
|
# 静态构建Linux
|
|
go build -ldflags "-s -w"
|
|
|
|
# Windows 后台运行
|
|
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -ldflags="-H windowsgui" -o public_ip-Daemon.exe
|
|
|
|
# Windows Dos运行
|
|
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o public_ip-Dos.exe
|
|
|