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.
2 parents 3c36953 + 5bbdefe commit 16d5225Copy full SHA for 16d5225
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