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