diff --git a/lib/compiler-llvm/Cargo.toml b/lib/compiler-llvm/Cargo.toml index 7ef5cab87..e18f9075f 100644 --- a/lib/compiler-llvm/Cargo.toml +++ b/lib/compiler-llvm/Cargo.toml @@ -11,7 +11,6 @@ edition = "2018" [dependencies] wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha.1", features = ["translator"] } -wasmer-object = { path = "../object", version = "1.0.0-alpha.1" } wasmer-vm = { path = "../vm", version = "1.0.0-alpha.1" } wasm-common = { path = "../wasm-common", version = "1.0.0-alpha.1" } target-lexicon = { version = "0.10", default-features = false } diff --git a/lib/compiler-llvm/src/trampoline/wasm.rs b/lib/compiler-llvm/src/trampoline/wasm.rs index 2d35897ab..ad9188e87 100644 --- a/lib/compiler-llvm/src/trampoline/wasm.rs +++ b/lib/compiler-llvm/src/trampoline/wasm.rs @@ -25,7 +25,7 @@ pub struct FuncTrampoline { target_machine: TargetMachine, } -const FUNCTION_SECTION: &str = "__TEXT__,wasmer_trampoline"; +const FUNCTION_SECTION: &str = "__TEXT__,wasmer_t"; // Needs to be between 1 and 16 chars impl FuncTrampoline { pub fn new(target_machine: TargetMachine) -> Self {