diff --git a/.travis.yml b/.travis.yml index 86a202e..0ad15f5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,6 @@ language: go jobs: include: - - arch: ppc64le - go: 1.17.x - arch: arm64-graviton2 virt: vm os: linux diff --git a/internal/xor/xor_amd64.s b/internal/xor/xor_amd64.s index 780d37a..3262818 100644 --- a/internal/xor/xor_amd64.s +++ b/internal/xor/xor_amd64.s @@ -1,6 +1,8 @@ // Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +//go:build amd64 && !generic +// +build amd64,!generic #include "textflag.h" diff --git a/internal/xor/xor_arm64.s b/internal/xor/xor_arm64.s index 669852d..acbd2ea 100644 --- a/internal/xor/xor_arm64.s +++ b/internal/xor/xor_arm64.s @@ -1,6 +1,8 @@ // Copyright 2020 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +//go:build arm64 && !generic +// +build arm64,!generic #include "textflag.h" diff --git a/sm9/gfp_amd64.s b/sm9/gfp_amd64.s index 64c97ea..7f1c8ed 100644 --- a/sm9/gfp_amd64.s +++ b/sm9/gfp_amd64.s @@ -1,3 +1,4 @@ +//go:build amd64 && !generic // +build amd64,!generic #define storeBlock(a0,a1,a2,a3, r) \ diff --git a/sm9/gfp_arm64.s b/sm9/gfp_arm64.s index c65e801..fd709c9 100644 --- a/sm9/gfp_arm64.s +++ b/sm9/gfp_arm64.s @@ -1,3 +1,4 @@ +//go:build arm64 && !generic // +build arm64,!generic #define storeBlock(a0,a1,a2,a3, r) \