Max Desiatov
Max Desiatov
Looks like Wasmer doesn't support Amazon Linux either (even on x86_64), tests are failing with these errors: ``` /home/ec2-user/.wasmer/bin/wasmer: /lib64/libm.so.6: version `GLIBC_2.27' not found (required by /home/ec2-user/.wasmer/bin/wasmer) /home/ec2-user/.wasmer/bin/wasmer: /lib64/libtinfo.so.5: no...
~Latest version of Wasmer also blocks x86_64 CI runs for us, reported as https://github.com/wasmerio/wasmer/issues/2772~ Update: fixed now.
Thanks for raising this issue. Unfortunately, the Swift compiler doesn't run all of the required size optimizations yet, but you can run them manually with `wasm-strip` from [WABT](https://github.com/WebAssembly/wabt) and `wasm-opt...
@hassan-shahbazi I've reviewed the benchmark and it looks like Wasmer's `Compile` function is repeatedly invoked on every test iteration. In my opinion, this benchmarks Wasmer's compilation speed first, not the...
I don't think ARC has any relation to the size of the binary. With the latest development snapshots I think we can DCE unused parts of stdlib, so it's up...
Did you have a look at wasi-libc source code? https://github.com/WebAssembly/wasi-libc/blob/378fd4b21aab6d390f3a1c1817d53c422ad00a62/libc-top-half/musl/include/stdio.h#L14 Usually it's just easier to `#if !os(WASI)` pieces with file IO in library code than to make it work on...
I think `predefined-macros.txt` is automatically generated from `wasi-libc` source code, but I may be wrong. @kateinoigakukun worked on setting the WASILibc module up, so maybe he could provide some pointers...
I'm going to put my PRs on hold until you're done with this one, again sorry about the conflicts 😅
Thanks! This is one of the errors we've been chasing for some time, but couldn't find an isolated reproducible test case. Do you have one to share here by any...
I don't think it's related to `carton` directly, so I'm moving it to the toolchain repo in the meantime...