From 6bd0710831cb0796e903b7e9e41ca33214913620 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Tue, 21 Mar 2017 08:34:05 +0000 Subject: [PATCH] plugin: disable Go 1.8 plugin on non-amd64 Signed-off-by: Akihiro Suda --- plugin/plugin_go18.go | 2 +- plugin/plugin_other.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/plugin_go18.go b/plugin/plugin_go18.go index 13ddb32..d910124 100644 --- a/plugin/plugin_go18.go +++ b/plugin/plugin_go18.go @@ -1,4 +1,4 @@ -// +build go1.8,!windows +// +build go1.8,!windows,amd64 package plugin diff --git a/plugin/plugin_other.go b/plugin/plugin_other.go index 5057d88..21a4570 100644 --- a/plugin/plugin_other.go +++ b/plugin/plugin_other.go @@ -1,4 +1,4 @@ -// +build !go1.8 windows +// +build !go1.8 windows !amd64 package plugin