Fix test and build for musl

This commit is contained in:
Mark McCaskey 2020-02-26 19:07:30 -08:00
parent dbb2ececf8
commit b5cbb9df60
2 changed files with 4 additions and 0 deletions

View File

@ -90,6 +90,7 @@ 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",
]
@ -97,6 +98,7 @@ 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 = [

View File

@ -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(),
},
}
}