From 5a5949277cbf2149c3771152f6427d05969a2965 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Guimar=C3=A3es?= Date: Wed, 27 Jul 2016 11:54:49 -0300 Subject: [PATCH 1/3] build with arm versions --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 340fd630..60bc996a 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ build-all: gox -verbose \ -ldflags "-X main.version=${VERSION}" \ -os="linux darwin windows " \ - -arch="amd64 386" \ + -arch="amd64 386 armv5 armv6 armv7" \ -output="dist/{{.OS}}-{{.Arch}}/{{.Dir}}" . dist: build-all From c6ef71bfb5fd0ee39f73c7fb7449ec09f0f56f6b Mon Sep 17 00:00:00 2001 From: Francisco Guimaraes Date: Thu, 28 Jul 2016 10:37:33 -0300 Subject: [PATCH 2/3] Include arm64(armv8) for linux --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 60bc996a..d0dd5067 100644 --- a/Makefile +++ b/Makefile @@ -23,8 +23,10 @@ bootstrap-dist: build-all: gox -verbose \ -ldflags "-X main.version=${VERSION}" \ + -ldflags "-X main.version=${VERSION}" \ -os="linux darwin windows " \ - -arch="amd64 386 armv5 armv6 armv7" \ + -arch="amd64 386 armv5 armv6 armv7 arm64" \ + -osarch="!darwin/arm64" \ -output="dist/{{.OS}}-{{.Arch}}/{{.Dir}}" . dist: build-all From 9f0d3a9eedbc311aafe068d862823c840be4c163 Mon Sep 17 00:00:00 2001 From: Francisco Guimaraes Date: Thu, 28 Jul 2016 14:32:32 -0300 Subject: [PATCH 3/3] Remove duplicated line --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index d0dd5067..ae20dfaf 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,6 @@ bootstrap-dist: build-all: gox -verbose \ -ldflags "-X main.version=${VERSION}" \ - -ldflags "-X main.version=${VERSION}" \ -os="linux darwin windows " \ -arch="amd64 386 armv5 armv6 armv7 arm64" \ -osarch="!darwin/arm64" \