pub fn emit_serialized(
obj: &mut Object<'_>,
sercomp: &[u8],
triple: &Triple,
object_name: &str,
) -> Result<(), ObjectError>
Expand description
Emit the compilation result into an existing object.
ยงUsage
use wasmer_object::{get_object_for_target, emit_compilation};
let bytes = &[ /* compilation bytes */];
let mut object = get_object_for_target(&triple)?;
emit_serialized(&mut object, bytes, &triple, "WASMER_MODULE")?;