Skip to content

Commit b3a56a1

Browse files
Update README
1 parent beb78a3 commit b3a56a1

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qsc"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55

66
[dependencies]

README.md

+20-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,26 @@ I'm working on a new parser implementation! To use it, run `cargo run -- new-par
2323

2424
Currently, here is the support matrix:
2525

26-
| Version | x86 (32-bit) | x86_64 (64-bit) | arm (32-bit) | aarch64 (64-bit) |
27-
| ------- | ------------ | --------------- | ------------ | ---------------- |
28-
| 0.0.0 | 🔴 | 🔴 | 🔴 | 🟢 |
29-
| 0.1.0 | 🔴 | 🟢 | 🔴 | 🟢 |
26+
| Version | i686 | x86_64 | armv7l | armhf | arm64 |
27+
| ------- | ---- | ------ | ------ | ----- | ----- |
28+
| 0.0.0 | 🔴 | 🔴 | 🔴 | 🔴 | 🟢 |
29+
| 0.1.0 | 🔴 | 🟡 | 🔴 | 🔴 | 🟢 |
30+
| 0.3.0 | 🟢 | 🟢 | 🔴 | 🔴 | 🟢 |
31+
32+
Note that armv7l and armhf support is dependent on Cranelift's support for it.
33+
See [cranelift#1173](https://github.com/bytecodealliance/wasmtime/issues/1173)
34+
for more details.
35+
36+
Musl builds for i686 are also not supported due to a big in cargo zigbuild.
37+
See [cargo-zigbuild#96](https://github.com/rust-cross/cargo-zigbuild/issues/96)
38+
for more details.
3039

3140
# Credits
3241

33-
Huge thanks to [Pixeled (@orosmatthew)](https://github.com/orosmatthew) and his [Creating a Compiler](https://www.youtube.com/playlist?list=PLUDlas_Zy_qC7c5tCgTMYq2idyyT241qs) series, as it helped me think about how to do this best and it gave me the inspiration for this project.
42+
Huge thanks to [Pixeled (@orosmatthew)](https://github.com/orosmatthew) and his
43+
[Creating a Compiler](https://www.youtube.com/playlist?list=PLUDlas_Zy_qC7c5tCgTMYq2idyyT241qs)
44+
series, as it helped me think about how to do this best and it gave me the
45+
inspiration for this project.
46+
47+
Another huge thanks for the [cranelift-jit-demo](https://github.com/bytecodealliance/cranelift-jit-demo),
48+
as it helped me implement the code generator with Cranelift.

0 commit comments

Comments
 (0)