我通常将所有编程文件存储在一个驱动器中,以便随时随地访问它们。但是现在我需要能够在Linux机器上编译我的c ++程序。因此,我尝试在WSL模式下使用Visual Studio代码,但是当我尝试编译和调试代码时,我被告知它在指定位置找不到任何* .cpp文件,但文件显然存在。如果我在ubuntu窗口中自行运行compile命令,则可以正常运行。当我将文件从/ mnt移到主目录时,一切正常。当我从ubuntu窗口使用编译命令时,为什么我的编译命令可以正常工作,而现在,当VS Code尝试执行该命令时,为什么我的编译命令可以正常工作?有什么想法吗?
这是我的task.json文件和launch.json文件:
task.json
{
"tasks": [
{
"type": "shell",
"label": "g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"${cwd}/*.cpp",
"-o",
"${cwd}/main"
],
"options": {
"cwd": "/usr/bin"
}
}
],
"version": "2.0.0"
}
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "g++ build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${cwd}/main",
"args": ["test1.txt"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "g++ build active file",
"miDebuggerPath": "/usr/bin/gdb"
}
]
}