vscode-cpptools icon indicating copy to clipboard operation
vscode-cpptools copied to clipboard

cannot load dll in newest vscode version

Open Mafa-Qyc opened this issue 4 weeks ago • 2 comments

Environment

  • OS and version: Windows 10
  • VS Code: 1.106.0 system setup
  • C/C++ extension: 1.28.3
  • OS and version of remote machine (if applicable):
  • GDB / LLDB version: msys2 gdb 16.3-1

switch to vscode 1.105.0 system setup and it works

1.105.0-debug-console.txt 1.106.0-debug-console.txt

Debugger Configurations

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "(gdb) Launch",
      "type": "cppdbg",
      "request": "launch",
      "stopAtEntry": false,
      "cwd": "${workspaceFolder}",
      "externalConsole": false,
      "MIMode": "gdb",
      "preLaunchTask": "Build",
      "setupCommands": [
        {
          "description": "Enable pretty-printing for gdb",
          "text": "-enable-pretty-printing",
          "ignoreFailures": true
        }
      ],
      "windows": {
        "program": "${workspaceFolder}/build/${relativeFileDirname}/ns3.43-${fileBasenameNoExtension}-debug.exe",
        "environment": [
          {
            "name": "PATH",
            "value": "${workspaceFolder}/build/lib;${env:PATH}"
          },
          {
            "name": "PYTHONPATH",
            "value": "${workspaceFolder}/bindings/python"
          }
        ]
      },
      "linux": {
        "program": "${workspaceFolder}/build/${relativeFileDirname}/ns3.43-${fileBasenameNoExtension}-debug",
        "environment": [
          {
            "name": "LD_LIBRARY_PATH",
            "value": "${env:LD_LIBRARY_PATH}:${workspaceFolder}/build/lib"
          }
        ]
      }
    },
}

Debugger Logs

^

Other Extensions

No response

Additional Information

No response

Mafa-Qyc avatar Nov 16 '25 15:11 Mafa-Qyc