We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f08962 commit 5bbdefeCopy full SHA for 5bbdefe
crates/core/src/lib.rs
@@ -77,6 +77,11 @@ impl Default for Config {
77
inner.async_support(true);
78
inner.epoch_interruption(true);
79
inner.wasm_component_model(true);
80
+ // If targeting musl, disable native unwind to address this issue:
81
+ // https://github.com/fermyon/spin/issues/2889
82
+ // TODO: remove this when wasmtime is updated to >= v27.0.0
83
+ #[cfg(all(target_os = "linux", target_env = "musl"))]
84
+ inner.native_unwind_info(false);
85
86
if use_pooling_allocator_by_default() {
87
// By default enable the pooling instance allocator in Wasmtime. This
0 commit comments