Skip to content

Commit

Permalink
Update default Wasmer version
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtonmeuser committed Sep 10, 2023
1 parent 4d961df commit 2632a11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ if env["platform"] == "windows":
env.Append(LIBS=["userenv"])
else: # MSVC
env["LIBRUNTIMESUFFIX"] = ".lib"
env.Append(CCFLAGS=["-MD"]) # Dynamic CRT used by Wasmer >= v3.2.0
# Force Windows SDK library suffix (see https://github.com/godotengine/godot/issues/23687)
env.Append(LINKFLAGS=["bcrypt.lib", "userenv.lib", "ws2_32.lib", "advapi32.lib", "ntdll.lib"])

Expand Down
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import tarfile

WASMER_BASE_URL = "https://github.com/wasmerio/wasmer/releases/download/{0}/wasmer-{1}.tar.gz"
WASMER_VER_DEFAULT = "v3.1.1"
WASMER_VER_DEFAULT = "v4.2.0"
WASMTIME_BASE_URL = "https://github.com/bytecodealliance/wasmtime/releases/download/{0}/wasmtime-{0}-{1}-c-api.tar.xz"
WASMTIME_VER_DEFAULT = "v12.0.1"

Expand Down

0 comments on commit 2632a11

Please sign in to comment.