実現したいこと
デバック中にcinを利用した標準入力
今の状態だとターミナルが起動するがその後動きなし
該当のソースコード
launch
1{ 2 // Use IntelliSense to learn about possible attributes. 3 // Hover to view descriptions of existing attributes. 4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 "version": "0.2.0", 6 "configurations": [ 7 { 8 "name": "clang++ - Build and debug active file", 9 "type": "cppdbg", 10 "request": "launch", 11 "program": "${fileDirname}/${fileBasenameNoExtension}", 12 "args": [], 13 "stopAtEntry": false, 14 "cwd": "${workspaceFolder}", 15 "environment": [], 16 "externalConsole": true, 17 "MIMode": "lldb", 18 "preLaunchTask": "clang++ build active file" 19 } 20 ] 21 }
tasks
1{ 2 // See https://go.microsoft.com/fwlink/?LinkId=733558 3 // for the documentation about the tasks.json format 4 "version": "2.0.0", 5 "tasks": [ 6 { 7 "type": "shell", 8 "label": "clang++ build active file", 9 "command": "/usr/bin/clang++", 10 "args": [ 11 "-std=c++17", 12 "-stdlib=libc++", 13 "-g", 14 "${file}", 15 "-o", 16 "${fileDirname}/${fileBasenameNoExtension}" 17 ], 18 "options": { 19 "cwd": "${workspaceFolder}" 20 }, 21 "problemMatcher": ["$gcc"], 22 "group": { 23 "kind": "build", 24 "isDefault": true 25 } 26 } 27 ] 28 }
試したこと
"externalConsole":をtrueにした。
補足情報(FW/ツールのバージョンなど)
Mac OS Big Sur
バージョン11.4
vscode
バージョン: 1.52.1
コミット: ea3859d4ba2f3e577a159bc91e3074c5d85c0523
日付: 2020-12-16T16:30:02.420Z
Electron: 9.3.5
Chrome: 83.0.4103.122
Node.js: 12.14.1
V8: 8.3.110.13-electron.0
OS: Darwin x64 20.5.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。