does quickrt still works?
I find that there are some errors
I simply remove history and ui and path related part and then it works.
quickrt.lua:
remove luart_path
local luart_path='.'
package.cpath = package.cpath..";"..luart_path
history.lua:
remove all
local history = {}
return history
readline.lua:
comment ui lines:
-- local ui = require "ui"
-- ui.update()
rtc quickrt.lua src
error line:
luart_path = sys.File(arg[0]).directory.parent.parent.fullpath.."/modules/?/?.dll"
it looks like arg
variable changed:
luart1.9.exe -e "print(arg[0])"
got: -e
luart1.7.exe -e "print(arg[0])"
path/luart1.7.exe
lua_puc.exe -e "print(arg[0])"
path/lua_puc.exe
and ui module not exist any more:
luart1.9.exe -e print(require'ui')
print(require'ui'):1: module 'ui' not found
luart1.7.exe -e print(require'ui')
ui: 00000000006239f0
and quickrt actually does not need ui module so I just delete it .
[Login to see the link]