From bb5782346948693ed5e7c60926c614fc46ab8174 Mon Sep 17 00:00:00 2001 From: fangwentong Date: Fri, 29 Mar 2024 13:27:44 +0800 Subject: [PATCH] Update build constraints for loong64 and s390x --- cpuinfo_loong64.go | 4 ++-- cpuinfo_s390x.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cpuinfo_loong64.go b/cpuinfo_loong64.go index d88442f0e..ab7bfa5f4 100644 --- a/cpuinfo_loong64.go +++ b/cpuinfo_loong64.go @@ -11,8 +11,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build linux -// +build linux +//go:build linux && loong64 +// +build linux,loong64 package procfs diff --git a/cpuinfo_s390x.go b/cpuinfo_s390x.go index fa3686bc0..605376b17 100644 --- a/cpuinfo_s390x.go +++ b/cpuinfo_s390x.go @@ -11,8 +11,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build linux -// +build linux +//go:build linux && s390x +// +build linux,s390x package procfs