From c406f0a263770d948681a9d03e091944fac1b6c8 Mon Sep 17 00:00:00 2001 From: Green Date: Fri, 25 Oct 2024 02:44:03 +0200 Subject: [PATCH] change RuntimeInner.create() to set a default compiler with O2 --- crates/lune/src/rt/runtime.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/crates/lune/src/rt/runtime.rs b/crates/lune/src/rt/runtime.rs index 31e5b03..495e26d 100644 --- a/crates/lune/src/rt/runtime.rs +++ b/crates/lune/src/rt/runtime.rs @@ -8,7 +8,10 @@ use std::{ }, }; -use mlua::prelude::*; +use mlua::{ + prelude::*, + Compiler, +}; use mlua_luau_scheduler::{Functions, Scheduler}; use self_cell::self_cell; @@ -30,6 +33,10 @@ impl RuntimeInner { fn create() -> LuaResult { let lua = Rc::new(Lua::new()); + let compiler = Compiler::new() + .set_optimization_level(2); + + lua.set_compiler(compiler); lua.set_app_data(Rc::downgrade(&lua)); lua.set_app_data(Vec::::new());