aboutsummaryrefslogtreecommitdiff
path: root/blake2s
diff options
context:
space:
mode:
authorTamir Duberstein <tamird@google.com>2020-11-13 09:41:55 -0500
committerFilippo Valsorda <filippo@golang.org>2020-12-03 16:30:18 +0000
commitbe400aefbc4c83e9aab51e82b8d4b12760653b47 (patch)
tree26c94f9f114e30067c05e9d7b0fea47c8c6a8289 /blake2s
parentc8d3bf9c5392d5f66747f112cd55055d7a530b19 (diff)
downloadgo-x-crypto-be400aefbc4c83e9aab51e82b8d4b12760653b47.tar.xz
all: build tags: appengine,!gccgo => purego,gc
appengine is obsolete and superseded by purego, and gc is a more precise tag for files that use gc-syntax assembly. Change-Id: I716f59de772ebeee4adf4d2a432edf300122cef0 Reviewed-on: https://go-review.googlesource.com/c/crypto/+/269920 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org>
Diffstat (limited to 'blake2s')
-rw-r--r--blake2s/blake2s_386.go2
-rw-r--r--blake2s/blake2s_386.s2
-rw-r--r--blake2s/blake2s_amd64.go2
-rw-r--r--blake2s/blake2s_amd64.s2
-rw-r--r--blake2s/blake2s_ref.go2
5 files changed, 5 insertions, 5 deletions
diff --git a/blake2s/blake2s_386.go b/blake2s/blake2s_386.go
index d8f9cea..2d8ee63 100644
--- a/blake2s/blake2s_386.go
+++ b/blake2s/blake2s_386.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// +build 386,!gccgo,!appengine
+// +build 386,gc,!purego
package blake2s
diff --git a/blake2s/blake2s_386.s b/blake2s/blake2s_386.s
index c123e5d..023532b 100644
--- a/blake2s/blake2s_386.s
+++ b/blake2s/blake2s_386.s
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// +build 386,!gccgo,!appengine
+// +build 386,gc,!purego
#include "textflag.h"
diff --git a/blake2s/blake2s_amd64.go b/blake2s/blake2s_amd64.go
index 4e8d2d7..267bdce 100644
--- a/blake2s/blake2s_amd64.go
+++ b/blake2s/blake2s_amd64.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// +build amd64,!gccgo,!appengine
+// +build amd64,gc,!purego
package blake2s
diff --git a/blake2s/blake2s_amd64.s b/blake2s/blake2s_amd64.s
index 8da2802..b905944 100644
--- a/blake2s/blake2s_amd64.s
+++ b/blake2s/blake2s_amd64.s
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// +build amd64,!gccgo,!appengine
+// +build amd64,gc,!purego
#include "textflag.h"
diff --git a/blake2s/blake2s_ref.go b/blake2s/blake2s_ref.go
index a311273..94ef01d 100644
--- a/blake2s/blake2s_ref.go
+++ b/blake2s/blake2s_ref.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// +build !amd64,!386 gccgo appengine
+// +build !amd64,!386 !gc purego
package blake2s