diff options
Diffstat (limited to 'vendor/modernc.org/ccgo/v3/lib/Makefile')
-rw-r--r-- | vendor/modernc.org/ccgo/v3/lib/Makefile | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/vendor/modernc.org/ccgo/v3/lib/Makefile b/vendor/modernc.org/ccgo/v3/lib/Makefile index 776f7eb46..ec6f53518 100644 --- a/vendor/modernc.org/ccgo/v3/lib/Makefile +++ b/vendor/modernc.org/ccgo/v3/lib/Makefile @@ -72,13 +72,17 @@ test_windows_amd64: time /T | tee -a %TEMP%\testlog-windows-amd64 build_all_targets: - GOOS=darwin GOARCH=amd64 go build -v ./... - GOOS=linux GOARCH=386 go build -v ./... - GOOS=linux GOARCH=amd64 go build -v ./... - GOOS=linux GOARCH=arm go build -v ./... - GOOS=linux GOARCH=arm64 go build -v ./... - GOOS=windows GOARCH=386 go build -v ./... - GOOS=windows GOARCH=amd64 go build -v ./... + GOOS=darwin GOARCH=amd64 go test -c -o /dev/null + GOOS=darwin GOARCH=arm64 go test -c -o /dev/null + GOOS=freebsd GOARCH=amd64 go test -c -o /dev/null + GOOS=linux GOARCH=386 go test -c -o /dev/null + GOOS=linux GOARCH=amd64 go test -c -o /dev/null + GOOS=linux GOARCH=arm go test -c -o /dev/null + GOOS=linux GOARCH=arm64 go test -c -o /dev/null + GOOS=linux GOARCH=s390x go test -c -o /dev/null + GOOS=netbsd GOARCH=amd64 go test -c -o /dev/null + GOOS=windows GOARCH=386 go test -c -o /dev/null + GOOS=windows GOARCH=amd64 go test -c -o /dev/null devbench: date 2>&1 | tee log-devbench |