actboy168 / lua-debug

Lua Debug Adapter for Visual Studio Code
MIT License
437 stars 95 forks source link

Launch mode 2 (start a process) is not working since version 1.33.1 in windows #124

Closed yosoymin closed 3 years ago

yosoymin commented 3 years ago

I'm using a custom executable with lua 5.3 embedded. My executable links with lua5.3.dll file, everything was working fine in version 1.33.0 and prevous ones, but in version 1.33.1 something has changed, and now my program stops suddenly at the beginning. This is my launch.json configutation:

{
    "name": "Debug LUA - football2",
    "type": "lua",
    "request": "launch",
    "stopOnEntry": false,
    "runtimeExecutable": "${workspaceFolder}/../Code/build/x32/Src/GoldenViewer/Debug/GoldenViewer.exe",
    "runtimeArgs": "football2",
    "cwd": "${workspaceFolder}/../_Output/win32/",
    "consoleCoding": "utf8",
    "presentation": {
        "hidden": false,
        "group": "football2"
    }
},