summaryrefslogtreecommitdiff
path: root/vendor/github.com/tetratelabs/wazero/sys
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/tetratelabs/wazero/sys')
-rw-r--r--vendor/github.com/tetratelabs/wazero/sys/stat_linux.go2
-rw-r--r--vendor/github.com/tetratelabs/wazero/sys/stat_unsupported.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/tetratelabs/wazero/sys/stat_linux.go b/vendor/github.com/tetratelabs/wazero/sys/stat_linux.go
index 9b5e20e8d..dded36347 100644
--- a/vendor/github.com/tetratelabs/wazero/sys/stat_linux.go
+++ b/vendor/github.com/tetratelabs/wazero/sys/stat_linux.go
@@ -1,4 +1,4 @@
-//go:build (amd64 || arm64 || riscv64) && linux
+//go:build (amd64 || arm64 || ppc64le || riscv64 || s390x) && linux
// Note: This expression is not the same as compiler support, even if it looks
// similar. Platform functions here are used in interpreter mode as well.
diff --git a/vendor/github.com/tetratelabs/wazero/sys/stat_unsupported.go b/vendor/github.com/tetratelabs/wazero/sys/stat_unsupported.go
index cc37012cf..cc800b2e3 100644
--- a/vendor/github.com/tetratelabs/wazero/sys/stat_unsupported.go
+++ b/vendor/github.com/tetratelabs/wazero/sys/stat_unsupported.go
@@ -1,4 +1,4 @@
-//go:build (!((amd64 || arm64 || riscv64) && linux) && !((amd64 || arm64) && (darwin || freebsd)) && !((amd64 || arm64) && windows)) || js
+//go:build (!((amd64 || arm64 || ppc64le || riscv64 || s390x) && linux) && !((amd64 || arm64) && (darwin || freebsd)) && !((amd64 || arm64) && windows)) || js
package sys