14 lines
271 B
Batchfile
14 lines
271 B
Batchfile
@echo off
|
|
|
|
SET CGO_ENABLED=0
|
|
SET GOARCH=amd64
|
|
SET GOOS=linux
|
|
|
|
set linuxpath=../../server_publish/run/linux
|
|
|
|
echo "build linux ELF files"
|
|
echo "[serverlist] build linux ELF file"
|
|
go build -o %linuxpath%/serverlist ./serverlist
|
|
echo "build linux ELF files finish..."
|
|
|
|
pause |