We temporarily supported go 1.16 to allow migration. By setting the floor to 1.17, we can improve performance and focus on only two versions (1.17 and soon 1.18). See https://go.googlesource.com/proposal/+/refs/changes/78/248178/1/design/40724-register-calling.md See #37 Signed-off-by: Adrian Cole <adrian@tetrate.io>
9 lines
182 B
Go
9 lines
182 B
Go
//go:build !amd64 && !arm64
|
|
|
|
package wazero
|
|
|
|
// NewRuntimeConfig returns NewRuntimeConfigInterpreter
|
|
func NewRuntimeConfig() *RuntimeConfig {
|
|
return NewRuntimeConfigInterpreter()
|
|
}
|