Files
wazero/config_unsupported.go
Anuraag Agrawal f9a59d269a Small cleanups to docs. (#593)
Signed-off-by: Anuraag Agrawal <anuraaga@gmail.com>
2022-05-27 17:24:03 +09:00

12 lines
298 B
Go

//go:build !amd64 && !arm64
package wazero
// CompilerSupported returns whether the compiler is supported in this environment.
const CompilerSupported = false
// NewRuntimeConfig returns NewRuntimeConfigInterpreter
func NewRuntimeConfig() RuntimeConfig {
return NewRuntimeConfigInterpreter()
}