From 3ac1ee16f377d31a0fb80c8dae28b6239ac4229e Mon Sep 17 00:00:00 2001 From: Terin Stock Date: Sun, 9 Mar 2025 17:47:56 +0100 Subject: [chore] remove vendor --- .../github.com/tetratelabs/wazero/config_supported.go | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 vendor/github.com/tetratelabs/wazero/config_supported.go (limited to 'vendor/github.com/tetratelabs/wazero/config_supported.go') diff --git a/vendor/github.com/tetratelabs/wazero/config_supported.go b/vendor/github.com/tetratelabs/wazero/config_supported.go deleted file mode 100644 index 214c2bb8c..000000000 --- a/vendor/github.com/tetratelabs/wazero/config_supported.go +++ /dev/null @@ -1,19 +0,0 @@ -// Note: The build constraints here are about the compiler, which is more -// narrow than the architectures supported by the assembler. -// -// Constraints here must match platform.CompilerSupported. -// -// Meanwhile, users who know their runtime.GOOS can operate with the compiler -// may choose to use NewRuntimeConfigCompiler explicitly. -//go:build (amd64 || arm64) && (linux || darwin || freebsd || netbsd || dragonfly || solaris || windows) - -package wazero - -import "github.com/tetratelabs/wazero/internal/platform" - -func newRuntimeConfig() RuntimeConfig { - if platform.CompilerSupported() { - return NewRuntimeConfigCompiler() - } - return NewRuntimeConfigInterpreter() -} -- cgit v1.2.3