Files
wazero/config_supported.go
Crypt Keeper 979b86d502 Fixes build after 76c0bfc33f
Signed-off-by: Adrian Cole <adrian@tetrate.io>
2022-03-02 13:44:26 +08:00

11 lines
295 B
Go

//go:build amd64 || arm64
// +build amd64 arm64
package wazero
// NewRuntimeConfig returns NewRuntimeConfigInterpreter
// TODO: switch back to NewRuntimeConfigJIT https://github.com/tetratelabs/wazero/issues/308
func NewRuntimeConfig() *RuntimeConfig {
return NewRuntimeConfigInterpreter()
}