Eric Sink

Results 491 comments of Eric Sink

@Crono1981 Yes, but is that from the one that succeeded or failed? And you might find build outputs in that form (in a runtimes directory, with a RID directory under...

> My gut feeling is it's some lower-level native dependency that is the culprit. Maybe my e_sqlite3 builds are somehow incompatible with ubuntu 22.04. Like, for example, they are looking...

Taking a second look at this, I think I misunderstood. And unless I misunderstanding yet again, I don't think the nativelibrary code is actually related to the problem. The real...

During development, I often run things in this "mode", ignoring the exports section and pretending that everything is exported with its internal name. But yes, to actually use wasm2cil, that...

Sorry, no documentation yet. :-) But if you want to just try converting a module, the console app in c-testsuite/build is currently configured to do that. It wants two command...

In Wasm, a "table" is a used for indirect function calls. Like a "vtable". Conceptually, it's a list of function pointers, and the call indirect instruction is saying "call the...

Ah, I see. I'm guessing the table import isn't necessary. So my code currently can't cope with the kinds of Wasm produced by emsdk. But the original C code here...

That code appears to also have a dependency on gmp.

Yeah, I'm not sure how all that autoconf/configure stuff interacts with the need to use --sysroot and --target flags.