Skip to content

Commit af817af

Browse files
authored
Merge pull request #368 from CosmWasm/update-wasmvm.dll-docs
Update wasmvm.dll docs
2 parents 6dd44ce + 27e54d6 commit af817af

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ We are working on Windows (#288).
2828

2929
### Builds of libwasmvm
3030

31-
Our system currently supports the following builds. In general we can only support targets
32-
that are [supported by Wasmer's singlepass backend](https://docs.wasmer.io/ecosystem/wasmer/wasmer-features#compiler-support-by-chipset),
31+
Our system currently supports the following builds. In general we can only
32+
support targets that are
33+
[supported by Wasmer's singlepass backend](https://docs.wasmer.io/ecosystem/wasmer/wasmer-features#compiler-support-by-chipset),
3334
which for example excludes all 32 bit systems.
3435

3536
<!-- AUTO GENERATED BY libwasmvm_builds.py START -->
@@ -48,12 +49,11 @@ which for example excludes all 32 bit systems.
4849
| macOS | x86_64 | static | 🚫​ | |
4950
| macOS | aarch64 | shared | ✅​libwasmvm.dylib | Fat/universal library with multiple archs ([#294]) |
5051
| macOS | aarch64 | static | 🚫​ | |
51-
| Windows (mingw) | x86_64 | shared | 🏗​wasmvm.dll | See [#288] |
52+
| Windows (mingw) | x86_64 | shared | ​wasmvm.dll | |
5253
| Windows (mingw) | x86_64 | static | 🚫​ | |
5354
| Windows (mingw) | aarch64 | shared | 🚫​ | |
5455
| Windows (mingw) | aarch64 | static | 🚫​ | |
5556

56-
[#288]: https://github.com/CosmWasm/wasmvm/pull/288
5757
[#294]: https://github.com/CosmWasm/wasmvm/pull/294
5858

5959
<!-- AUTO GENERATED BY libwasmvm_builds.py END -->

docs/libwasmvm_builds.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
1+
# Run python3 docs/libwasmvm_builds.py and paste output into
2+
# README.md
23

34
oss = ["Linux (glibc)", "Linux (musl)", "macOS", "Windows (mingw)"]
45
cpus = ["x86_64", "aarch64"]
@@ -14,7 +15,7 @@
1415
def wasmer22_supported(os, cpu, build_type):
1516
if os == "Windows (mingw)":
1617
if cpu == "x86_64" and build_type == "shared":
17-
return UNDER_CONSTRUCTION + "wasmvm.dll"
18+
return SUPPORTED + "wasmvm.dll"
1819
else:
1920
return UNSUPPORTED
2021
if os == "macOS" and build_type == "static":
@@ -40,8 +41,6 @@ def wasmer22_supported(os, cpu, build_type):
4041
return UNKNOWN
4142

4243
def get_note(os, cpu, build_type):
43-
if os == "Windows (mingw)" and cpu == "x86_64" and build_type == "shared":
44-
return "See [#288]"
4544
if os == "Linux (glibc)" and cpu == "x86_64" and build_type == "static":
4645
return "Would link libwasmvm statically but glibc dynamically as static glibc linking is not recommended. Potentially interesting for Osmosis."
4746
if os == "Linux (musl)" and build_type == "shared":
@@ -52,7 +51,6 @@ def get_note(os, cpu, build_type):
5251

5352
def get_links():
5453
return """
55-
[#288]: https://github.com/CosmWasm/wasmvm/pull/288
5654
[#294]: https://github.com/CosmWasm/wasmvm/pull/294
5755
"""
5856

0 commit comments

Comments
 (0)