我得到错误说明启动程序不存在我安装了c编译器mingw,这是需要为windows仍然面临错误,而编译。我怎么能运行c程序?我已经安装了所有的扩展相关的c,c扩展,事实上我也安装了代码运行器。早些时候,它显示了一个运行按钮在顶部,但现在它不显示,而不是它显示配置添加。
tyu7yeag1#
你不需要一个代码运行器,你可以配置VSCode让你运行代码,也可以用一种更好的方式调试它。
进入终端并输入gcc --version。如果你得到这样的东西:
gcc --version
gcc (Rev1, Built by MSYS2 project) 13.2.0Copyright (C) 2023 Free Software Foundation, Inc.This is free software; see the source for copying conditions. There is NOwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
gcc (Rev1, Built by MSYS2 project) 13.2.0
Copyright (C) 2023 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
字符串这意味着GCC已经安装,并且应该可以通过VSCode找到。
您必须给予正确的路径到tasks.json来执行构建和运行。
{ "version": "2.0.0", "tasks" : [ { "label" : "build release", "type" : "shell", "command": "gcc main.c -O2 -o ${workspaceFolderBasename}.exe" }, { "label" : "build debug", "type" : "shell", "command": "gcc main.c -g3 -o ${workspaceFolderBasename}.exe" }, { "label" : "run_executable", "type" : "shell", "command": "./${workspaceFolderBasename}.exe" } ]}
{
"version": "2.0.0",
"tasks" :
[
"label" : "build release",
"type" : "shell",
"command": "gcc main.c -O2 -o ${workspaceFolderBasename}.exe"
},
"label" : "build debug",
"command": "gcc main.c -g3 -o ${workspaceFolderBasename}.exe"
"label" : "run_executable",
"command": "./${workspaceFolderBasename}.exe"
}
]
型这假设你想要的可执行文件名与你的文件夹名相同。例如,如果文件夹名是my_c_project,那么可执行文件将变成my_c_project.exe。当然,你可以给予自定义名称,替换${workspaceFolderBasename}。要运行它或调试它,你需要GDB。要检查它,在终端中使用gdb --version,它应该给你给予这样的输出。
my_c_project
my_c_project.exe
${workspaceFolderBasename}
GDB
gdb --version
GNU gdb (GDB) 13.2Copyright (C) 2023 Free Software Foundation, Inc.License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>This is free software: you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.
GNU gdb (GDB) 13.2
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
型你还得配置发射配置。
这里有一个例子
{ "configurations": [ { "name" : "Debug Config", "type" : "cppdbg", "request" : "launch", "program" : "${workspaceRoot}/${workspaceFolderBasename}.exe", "args" : [], "preLaunchTask" : "build debug", "stopAtEntry" : true, "cwd" : "${workspaceRoot}", "environment" : [], "externalConsole": false, "MIMode" : "gdb", } ]}
"configurations": [
"name" : "Debug Config",
"type" : "cppdbg",
"request" : "launch",
"program" : "${workspaceRoot}/${workspaceFolderBasename}.exe",
"args" : [],
"preLaunchTask" : "build debug",
"stopAtEntry" : true,
"cwd" : "${workspaceRoot}",
"environment" : [],
"externalConsole": false,
"MIMode" : "gdb",
型其中第一个重要的部分是program参数,它应该指向构建后创建的程序。您可以看到build debug和build release任务都在基本文件夹中创建可执行文件,(与main.c放置的位置相同)。因此launch.json的program属性也指向同一个可执行文件。第二个重要的位是preLaunchTask参数,它告诉调试器在开始调试之前执行一个任务。它被设置为build debug任务,所以每次调试时,它都会重新构建,让你使用最新的代码。一旦你设置好了这些,只需转到调试选项卡,点击右上角的绿色调试符号。x1c 0d1x的数据它就会开始调试。维奥拉!
program
build debug
build release
launch.json
preLaunchTask
1条答案
按热度按时间tyu7yeag1#
你不需要一个代码运行器,你可以配置VSCode让你运行代码,也可以用一种更好的方式调试它。
检查GCC
进入终端并输入
gcc --version
。如果你得到这样的东西:
字符串
这意味着GCC已经安装,并且应该可以通过VSCode找到。
tasks.json
您必须给予正确的路径到tasks.json来执行构建和运行。
型
这假设你想要的可执行文件名与你的文件夹名相同。例如,如果文件夹名是
my_c_project
,那么可执行文件将变成my_c_project.exe
。当然,你可以给予自定义名称,替换${workspaceFolderBasename}
。要运行它或调试它,你需要
GDB
。要检查它,在终端中使用gdb --version
,它应该给你给予这样的输出。型
你还得配置发射配置。
launch.json
这里有一个例子
型
其中第一个重要的部分是
program
参数,它应该指向构建后创建的程序。您可以看到build debug
和build release
任务都在基本文件夹中创建可执行文件,(与main.c放置的位置相同)。因此launch.json
的program
属性也指向同一个可执行文件。第二个重要的位是
preLaunchTask
参数,它告诉调试器在开始调试之前执行一个任务。它被设置为build debug
任务,所以每次调试时,它都会重新构建,让你使用最新的代码。一旦你设置好了这些,只需转到调试选项卡,点击右上角的绿色调试符号。
x1c 0d1x的数据
它就会开始调试。维奥拉!