Vscode-cpptools: Warning: Debuggee TargetArchitecture not detected, assuming x86_64. =cmd-param-changed,param="pagination",value="off" [New Thread 6656.0x1dcc] [New Thread 6656.0x1dbc] [New Thread 6656.0x1d60] [New Thread 6656.0x1d64]

Created on 9 Aug 2018  Â·  5Comments  Â·  Source: microsoft/vscode-cpptools

Type: Debugger
Input information below

Please review existing issues and our documentation at https://github.com/Microsoft/vscode-cpptools/tree/master/Documentation prior to filing an issue.

Describe the bug

  • OS and Version:
  • VS Code Version:
  • C/C++ Extension Version:
  • Other extensions you installed (and if the issue persists after disabling them):
  • A clear and concise description of what the bug is.

To Reproduce
Please include a code sample and launch.json configuration.
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Additional context
If applicable, please include logging by adding "logging": { "engineLogging": true, "trace": true, "traceResponse": true } in your launch.json
Add any other context about the problem here including log or error messages in your Debug Console or Output windows.

debugger more info needed

Most helpful comment

Setting "targetArchitecture": "x86_64" in launch.json doesn't work?

All 5 comments

@Margie03 Please provide more information

Setting "targetArchitecture": "x86_64" in launch.json doesn't work?

I confirm @astinaam comment. It work by adding targetArchitecture to launch.json

/* launch.json */
{
    "version": "2.0.0",
    "configurations": [
        {
            "name": "C++ Launch",
            "type": "cppdbg",
            "request": "launch",
            "targetArchitecture": "x86_64",
            "program": "${workspaceRoot}/enigme",
            "preLaunchTask": "build",
            "internalConsoleOptions": "openOnSessionStart",
            "logging": {
                "moduleLoad": true,
                "programOutput": true,
                "trace": false
            },
            "showDisplayString": false,
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceRoot}",
            "environment": [],
            "externalConsole": true, // set true to enable keyboard input
            "osx": {
                "MIMode": "lldb"
            }
        }
    ]
}

@WardenGnaw

This issue has been closed automatically because it needs more information and has not had recent activity.

Was this page helpful?
0 / 5 - 0 ratings