Sergei Shulepov
Sergei Shulepov
Is it really about original length? As far as I remember, wabt has a switch like “non canonical lebs” for such cases, and if it set then all lebs will...
Just came here to mention rust-to-wasm, but it is already here. 😆 So, I decided to publish my experiments with Rust-WebAssembly approach [here](https://github.com/pepyakin/exonum-mini): it is stripped duct-taped version of [exonum...
@DarkEld3r Do you mean here or in exonum-core?
> Would you take a PR that adds bindings to the wat-desugar tool? Yeah sure! > I've never written bindings to a C library, but I'd give it a try...
Hey @skyne98 ! It might be very well possible. In fact at some point wabt-rs supported compilation into wasm32 but due to lack of demand for this feature I scrubbed...
That's interesting, thanks for the report! I checked the [build.rs](https://github.com/pepyakin/wabt-rs/blob/master/wabt-sys/build.rs) and it looks reasonable. Unfortunately, I don't have a windows machine and don't have an ability to debug the issue....
Just checked on a fresh install. It works just fine for me.
`rustup show`: rustc 1.57.0 (f1edd0429 2021-11-29) then after I did `rustup update`, I got: stable-aarch64-apple-darwin updated - rustc 1.60.0 (7737e0b5c 2022-04-04) (from rustc 1.57.0 (f1edd0429 2021-11-29)) without any other changes...
My hunch is that this might be related to the architecture. As you can see above, I am using the aarch64 build. Can you check whether you are using the...
There is no validation in parity-wasm left and everything migrated to wasmi (see [this](https://github.com/paritytech/wasmi/blob/master/src/validation/func.rs)). Moreover, when we started compiling wasm into internal wasmi IR validation became mixed with compilation concerns....