I tried building wasmtime v44.0.1 as a dependency in my C++ project using the c-api as instructed in https://docs.wasmtime.dev/c-api/.
Building with CMAKE_BUILD_TYPE Debug produces a very large static library:
Under otherwise the same settings for Release it produces:
Binaries being larger on Debug is not suprising, but more than 2GB for a static lib doesn't really make sense no matter how i think about it.
I tried building wasmtime
v44.0.1as a dependency in my C++ project using thec-apias instructed in https://docs.wasmtime.dev/c-api/.Building with
CMAKE_BUILD_TYPEDebugproduces a very large static library:Under otherwise the same settings for
Releaseit produces:Binaries being larger on
Debugis not suprising, but more than 2GB for a static lib doesn't really make sense no matter how i think about it.