You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a recommended workflow for compile software with library dependencies, all written in C. I have a project, which can be compiled with autotools and a library, libevent, which can be compiled using autotools or cmake. I first use emscripten to compile the libevent using emconfigure and emmake to generate .wasm files. Since the software using socket so I want to link the library to the existing source code. I was stuck here so is there any solution for that?
The text was updated successfully, but these errors were encountered:
@chjj Those scripts look useful! Would you be interested in having those scripts be hosted in the wasi-sdk repo?
In general we want to focus on getting the functionality we need in upstream clang (done), config (done) and cmake (not yet) directly rather than relying on scripts, but in the case of something like config.sub for example, we've already upstreamed the change, but not everyone has it yet, so the script which updates config.sub looks useful.
Is there a recommended workflow for compile software with library dependencies, all written in C. I have a project, which can be compiled with autotools and a library, libevent, which can be compiled using autotools or cmake. I first use emscripten to compile the libevent using
emconfigure
andemmake
to generate.wasm
files. Since the software using socket so I want to link the library to the existing source code. I was stuck here so is there any solution for that?The text was updated successfully, but these errors were encountered: