blob: 3e5a53cda531846721b6272ff2824f8ea6bdcbc0 (
plain)
1
2
3
4
5
6
7
8
|
// This is the opposite constraint of config_supported.go
//go:build !(amd64 || arm64) || !(darwin || linux || freebsd || windows)
package wazero
func newRuntimeConfig() RuntimeConfig {
return NewRuntimeConfigInterpreter()
}
|