calvin2021y
calvin2021y
igs_net_devices_list return zero in android, is there a workaround ?
you are right, on android `devices = igs_net_devices_list(&nb);` return 0 device. than pass that null into `igs_start_with_device(device_name, 5670);` cause the problem. I guess maybe android has some limit on libc.
I try `ziflist` on android, `ziflist_size` always return 0 ```c ziflist_t* iflist = ziflist_new(); assert (iflist); size_t items = ziflist_size(iflist); ```
maybe first step just add termux tests case without JNI stuff, traits it like linux.
https://github.com/curl/curl/pull/17613
my link step not call from clang, so I add `-mllvm -wasm-enable-sjlj` into wasm-ld. this will work like `-Wl,-llvm,-wasm-enable-sjlj` ? I get this error when link: ```sh wasm-ld: error: /wasi/share/wasi-sysroot/lib/wasm32-wasi/llvm-lto/18.1.2-wasi-sdk/libsetjmp.a(rt.o):...
after add `-Wl,-u__wasm_longjmp`, the problem fixed. any suggestion how to run the binary with `-wasm-enable-sjl`? I try `wasm-interp` and wasmer, not work.
thanks for explain. Is there a link I can download llvm19 sdk ? (like nightly build results) after `llvm 19` release, can I run the wasm binary in browser ?
```sh wamr/core/shared/platform/windows/win_file.c:87:13: warning: label followed by a declaration is a C23 extension [-Wc23-extensions] 87 | FILE_ATTRIBUTE_TAG_INFO file_info; | ^ wamr/core/shared/platform/windows/win_file.c:865:13: warning: label followed by a declaration is a C23 extension...
I guess maybe add uvwasi platform type here for all os use uvwasi?