From 742cf748ac104f491e29fbca0f93a81f2bb35ede Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Wed, 18 Jul 2018 13:45:15 +1000 Subject: [PATCH] Added support for PPC architectures --- scripts/xcompile.sh | 2 ++ version.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/xcompile.sh b/scripts/xcompile.sh index 4a4ab07..cdc05e8 100755 --- a/scripts/xcompile.sh +++ b/scripts/xcompile.sh @@ -4,4 +4,6 @@ # at https://github.com/inconshreveable/gonative gox -ldflags "${LDFLAGS}" -output="build/{{.Dir}}_{{.OS}}_{{.Arch}}" +gox -os=linux -arch=ppc64 -output="build/{{.Dir}}_{{.OS}}_{{.Arch}}" +gox -os=linux -arch=ppc64le -output="build/{{.Dir}}_{{.OS}}_{{.Arch}}" diff --git a/version.go b/version.go index 4446921..ec21812 100644 --- a/version.go +++ b/version.go @@ -11,7 +11,7 @@ var ( GitDescribe string // Version is main version number that is being run at the moment. - Version = "2.1.0" + Version = "2.1.1" // VersionPrerelease is a pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release