mirror of
https://github.com/maintell/webBenchmark.git
synced 2026-04-22 00:29:14 +08:00
11 lines
226 B
Batchfile
11 lines
226 B
Batchfile
@echo off
|
|
SET CGO_ENABLED=0
|
|
SET GOOS=linux
|
|
SET GOARCH=amd64
|
|
go build -o webBenchmark_linux_x64
|
|
SET GOOS=linux
|
|
SET GOARCH=arm
|
|
go build -o webBenchmark_linux_arm
|
|
SET GOOS=windows
|
|
SET GOARCH=amd64
|
|
go build -o webBenchmark_x64.exe |