Results 93 comments of Denis

> That's basically the same as #1561 I'm not sure if there is any tracking issue on this topic yet, at least I didn't found any issues related to this....

I love idea to compile .NET Application to Native code, it so cool !! I will be able to switch from C++ -> C# on embedded chips with RAM less...

> Some of you all are acting like CoreRT isn't receiving development anymore. It's pretty clear that it's still actively being developed. These things take time, Rome wasn't built in...

Okay, I mean that using C-API it is hard to link big program consistent with some pieces 100 wasm files ... `wasi_app.load_app(app_name);` just simplifies it

@alexcrichton One additional question, could you explain of provide link to documentation for case where `wasmtime` loads application with runtime dependencies, for example: ```bash wasmtime some_app.wasm # It depends on...

@alexcrichton Lets see my example for `WasiApp`: ```cpp class WasiApp { public: explicit WasiApp(std::vector linkdirs, std::optional workdir = std::nullopt) : link_dirs_{std::move(linkdirs)} , workdir_{std::move(workdir)} { linker_.define_wasi().unwrap(); } void set_config(ws::WasiConfig&& config) {...

@alexcrichton > Ah so the `wasmtime` CLI does not do what you rexample application is doing, which is using the first level of the two-level imports to load modules from...

> @alexcrichton Lets see my example for `WasiApp`: > > ```c++ > class WasiApp { > public: > explicit WasiApp(std::vector linkdirs, > std::optional workdir = std::nullopt) > : link_dirs_{std::move(linkdirs)} >...

> > > Hi @redradist , most of the changes look specific to upstream NimBLE. It would be really great if you raise PR on mynewt NimBLE first here: https://github.com/apache/mynewt-nimble/pulls...

I've faced the same issue with Android Emulator ... @maxkatz6 For me issue happens for Android SDK API 35, all older version like API 32, 33, 34 looks like works...