Fixed trampoline section name.

This commit is contained in:
Syrus
2020-08-06 18:20:17 -07:00
parent b027949914
commit f445cc73dd
2 changed files with 1 additions and 2 deletions

View File

@@ -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 {