2024-05-27 17:46:15 +02:00
|
|
|
// This is the opposite constraint of config_supported.go
|
2024-11-26 17:25:48 +01:00
|
|
|
//go:build !(amd64 || arm64) || !(linux || darwin || freebsd || netbsd || dragonfly || solaris || windows)
|
2024-05-27 17:46:15 +02:00
|
|
|
|
|
|
|
package wazero
|
|
|
|
|
|
|
|
func newRuntimeConfig() RuntimeConfig {
|
|
|
|
return NewRuntimeConfigInterpreter()
|
|
|
|
}
|