您好,登录后才能下订单哦!
这篇文章给大家分享的是有关M1 Macbook vscode C++ debug调试的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
这里给出自己摸索的最基本的调试方式,需要进阶调试感觉还是需要一定的学习成本的,尝试了几个网上的博客,暂时没遇到直接可以运行的。所以这里记录一下大概方法。
主要是需要在目录文件下配置两个 json 文件(tasks.json,launch.json)
VS code 版本是在官网直接下载的 M1 版本的 February 2021 (version 1.54)
主要是要下载 codeLLDB 的下载,直接在 VS code 里面搜索下载就好了(可能需要从网上下载 VSIX,不过 VS code 会有提示)
首先需要有一个文件目录 demo:
选中我们需要调试的文件 test.cpp
,然后按 F1,打开设置选项,选择 Tasks:Configure Default Build Task
,根据需要选择对应的编译器,这里选择 clang++:
之后 VS code 会在同级目录下自动生成一个名为 `tasks.json` 的文件,正常这里是如果没有其他需求直接使用默认的即可,如果需要加入 std=c++11 还是 c++17 之类的,要在 `args` 的内容里添加,这个可以额外学习一下 tasks.json 的配置教程,这里就不赘述了。默认生成内容如下:
{ "version": "2.0.0", "tasks": [ { "type": "cppbuild", "label": "C/C++: clang++ 生成活动文件", "command": "/usr/bin/clang++", "args": [ "-g", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}" ], "options": { "cwd": "${fileDirname}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true }, "detail": "编译器: /usr/bin/clang++" } ] }
然后 选择左边第三个调试选项
,再选择create a launch.json file
:
然后要选择 LLDB
选项,这个才是我们下载的 codeLLDB 插件,VS code 会自动创建一个 launch.json
:
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "lldb", "request": "launch", "name": "Debug", "program": "${workspaceFolder}/<your program>", "args": [], "cwd": "${workspaceFolder}" } ] }
这里需要稍作修改,将 “program” 选项修改成与 tasks.json
的文件名一致,然后还需要加一个 preLaunchTask
的选项,将 tasks.json
的 label 名字粘贴过来,修改以后launch.json
内容如下:
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "lldb", "request": "launch", "name": "Debug", "program": "${workspaceFolder}/${fileBasenameNoExtension}", "args": [], "cwd": "${workspaceFolder}", "preLaunchTask": "C/C++: clang++ 生成活动文件" } ] }
上述配置完成以后,编译项目(shift+command+B),在代码中设置断点,然后直接点击 F5,就可以正常断点运行调试了。
感谢各位的阅读!关于“M1 Macbook vscode C++ debug调试的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。