ianfor
ianfor
没法调试
请问我自从升级vscode之后就不能调试. vscode版本:1.68.1 lua-debug版本:1.58.2 自己的c++程序不能launch,但是能调试lua代码。 而且我设置了internalConsle之后程序不能启动,设置成另外一个模式可以在vscode自带的temminal启动,但是不能连接到调试器,关闭调试器的时候显示timeout。 (ps:内网程序没法截图)
simplehash_failure.cpp:82:24: error: invalid conversion from ‘int’ to ‘mpz_srcptr’ {aka ‘const __mpz_struct*’} [-fpermissive]
Error: BULK UPLOAD input failure: invalid data type, expecting Some(VarLenSized( VarLenContext { type: Datetimen, len: 8, collation: None })) but found String(So me("2023-08-29T10:41:16.845986700+08:00"))
``` //c++ module.new_usertype( "Vector3", sol::constructors(), "add", &Vector3::add, ...); //lua local pos = Vector3.new(0, 0, 0) ``` I noticed that when constructing a Vector3 in Lua, it creates a C closure...