experiment: turn off JIT

This seems to speed up copy! What does it slow down?
This commit is contained in:
Kartik K. Agaram 2022-06-09 08:15:32 -07:00
parent 4ad51d648b
commit 712dc95985
1 changed files with 5 additions and 0 deletions

View File

@ -113,6 +113,11 @@ function App.initialize(arg)
if #arg > 1 then
print('ignoring commandline args after '..arg[1])
end
if rawget(_G, 'jit') then
jit.off()
jit.flush()
end
end -- App.initialize
function initialize_window_geometry(geometry_spec)