From 02afeba9fae4ed8e3cf1be204715bec59244e010 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Thu, 7 Dec 2017 14:13:29 -0600 Subject: [PATCH] extend the list of osarch to build for --- tm-bench/Makefile | 6 +++--- tm-monitor/Makefile | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tm-bench/Makefile b/tm-bench/Makefile index b50f42cb9..4abf14524 100644 --- a/tm-bench/Makefile +++ b/tm-bench/Makefile @@ -23,9 +23,9 @@ build-all: tools rm -rf ./dist gox -verbose \ -ldflags "-s -w" \ - -arch="amd64 386" \ - -os="linux darwin windows" \ - -osarch="!darwin/386" \ + -arch="amd64 386 arm arm64" \ + -os="linux darwin windows freebsd" \ + -osarch="!darwin/arm !darwin/arm64" \ -output="dist/{{.OS}}-{{.Arch}}/{{.Dir}}" . dist: build-all diff --git a/tm-monitor/Makefile b/tm-monitor/Makefile index 0913c0578..246cbc180 100644 --- a/tm-monitor/Makefile +++ b/tm-monitor/Makefile @@ -24,9 +24,9 @@ build-all: tools rm -rf ./dist gox -verbose \ -ldflags "-s -w" \ - -arch="amd64 386" \ - -os="linux darwin windows" \ - -osarch="!darwin/386" \ + -arch="amd64 386 arm arm64" \ + -os="linux darwin windows freebsd" \ + -osarch="!darwin/arm !darwin/arm64" \ -output="dist/{{.OS}}-{{.Arch}}/{{.Dir}}" . dist: build-all