Debugging embedded Lua

后端 未结 6 851
粉色の甜心
粉色の甜心 2020-12-23 14:44

How do you debug lua code embedded in a c++ application?

From what I gather, either I need to buy a special IDE and link in their special lua runtime (ugh). Or I nee

6条回答
  •  南笙
    南笙 (楼主)
    2020-12-23 15:03

    You can use my debugger: GRLD (graphical remote lua debugger). Like RemDebug it uses a socket connection, but unlike RemDebug it has a nice graphical interface. The source code is provided, so you can make it work on any platform. It works with the standard lua runtime. Free of charge for non-commercial use.

    EDIT: sorry, I had to close the website, so the software is not available for download anymore. I might release it as open source software later, if I ever find the time.

    EDIT 2: link updated, now hosted in github under the MIT license (open source)

提交回复
热议问题