Skip to content

Commit

Permalink
Fix test and build for musl
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark McCaskey committed Feb 27, 2020
1 parent dbb2ece commit b5cbb9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,15 @@ fast-tests = []
backend-cranelift = [
"wasmer-clif-backend",
"wasmer-clif-backend/generate-debug-information",
"wasmer-runtime-core/generate-debug-information",
"wasmer-runtime/cranelift",
"wasmer-middleware-common-tests/clif",
]
backend-llvm = [
"wasmer-llvm-backend",
"wasmer-runtime/llvm",
"wasmer-middleware-common-tests/llvm",
"wasmer-runtime-core/generate-debug-information",
"wasmer-runtime-core/generate-debug-information-no-export-symbols",
]
backend-singlepass = [
Expand Down
2 changes: 2 additions & 0 deletions lib/runtime-core/src/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,8 @@ mod vm_ctx_tests {
custom_sections: HashMap::new(),

generate_debug_info: false,
#[cfg(feature = "generate-debug-information")]
debug_info_manager: crate::jit_debug::JitCodeDebugInfoManager::new(),
},
}
}
Expand Down

0 comments on commit b5cbb9d

Please sign in to comment.