Skip to content

Commit a174328

Browse files
committed
Default to Wasmtime runtime
1 parent 8f04548 commit a174328

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ from utils import download_wasmer, download_wasmtime, WASMER_VER_DEFAULT, WASMTI
55
opts = Variables([], ARGUMENTS)
66

77
# Define options
8-
opts.Add(EnumVariable("wasm_runtime", "Wasm runtime used", "wasmer", ["wasmer", "wasmtime"]))
8+
opts.Add(EnumVariable("wasm_runtime", "Wasm runtime used", "wasmtime", ["wasmer", "wasmtime"]))
99
opts.Add(BoolVariable("download_runtime", "(Re)download runtime library", "no"))
1010
opts.Add("runtime_version", "Runtime library version", None)
1111

SCsub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ from utils import download_wasmer, download_wasmtime, WASMER_VER_DEFAULT, WASMTI
22

33
opts = Variables([], ARGUMENTS)
44

5-
opts.Add(EnumVariable("wasm_runtime", "Wasm runtime used", "wasmer", ["wasmer", "wasmtime"]))
5+
opts.Add(EnumVariable("wasm_runtime", "Wasm runtime used", "wasmtime", ["wasmer", "wasmtime"]))
66
opts.Add(BoolVariable("download_runtime", "(Re)download runtime library", "no"))
77
opts.Add("runtime_version", "Runtime library version", None)
88

0 commit comments

Comments
 (0)