11 lines
210 B
Go
11 lines
210 B
Go
//go:build !amd64 && !arm64
|
|
|
|
package wazero
|
|
|
|
const JITSupported = false
|
|
|
|
// NewRuntimeConfig returns NewRuntimeConfigInterpreter
|
|
func NewRuntimeConfig() *RuntimeConfig {
|
|
return NewRuntimeConfigInterpreter()
|
|
}
|