Skip to content

Commit b5cbb9d

Browse files
author
Mark McCaskey
committed
Fix test and build for musl
1 parent dbb2ece commit b5cbb9d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,15 @@ fast-tests = []
9090
backend-cranelift = [
9191
"wasmer-clif-backend",
9292
"wasmer-clif-backend/generate-debug-information",
93+
"wasmer-runtime-core/generate-debug-information",
9394
"wasmer-runtime/cranelift",
9495
"wasmer-middleware-common-tests/clif",
9596
]
9697
backend-llvm = [
9798
"wasmer-llvm-backend",
9899
"wasmer-runtime/llvm",
99100
"wasmer-middleware-common-tests/llvm",
101+
"wasmer-runtime-core/generate-debug-information",
100102
"wasmer-runtime-core/generate-debug-information-no-export-symbols",
101103
]
102104
backend-singlepass = [

lib/runtime-core/src/vm.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,6 +1132,8 @@ mod vm_ctx_tests {
11321132
custom_sections: HashMap::new(),
11331133

11341134
generate_debug_info: false,
1135+
#[cfg(feature = "generate-debug-information")]
1136+
debug_info_manager: crate::jit_debug::JitCodeDebugInfoManager::new(),
11351137
},
11361138
}
11371139
}

0 commit comments

Comments
 (0)