diff --git a/wasmtime-obj/src/function.rs b/wasmtime-obj/src/function.rs index d5ef06f52b..59d3fcf049 100644 --- a/wasmtime-obj/src/function.rs +++ b/wasmtime-obj/src/function.rs @@ -96,6 +96,9 @@ pub fn emit_functions( }) .map_err(|err| format!("{}", err))?; } + RelocationTarget::JumpTable(_, _) => { + // ignore relocations for jump tables + } _ => panic!("relocations target not supported yet: {:?}", r.reloc_target), }; }