开个新帖子,记录需要用到的网络资源

runtime官网

Latest supported Visual C++ Redistributable downloads | Microsoft DocsThis article lists the download links for the latest versions of Visual C++ Redistributable packages.https://docs.microsoft.com/zh-CN/cpp/windows/latest-supported-vc-redist?view=msvc-170


Using GCC with MinGW

In this tutorial, you configure Visual Studio Code to use the GCC C++ compiler (g++) and GDB debugger from mingw-w64 to create programs that run on Windows.

MinGW-w64GCC for Windows 64 & 32 bitshttps://www.mingw-w64.org/我选的是MSYS2

MSYS2

安装完成,运行MSYS2 64bit

First run pacman -Syu         进行升级

Run "MSYS2 MSYS" from Start menu. Update the rest of the base packages with pacman -Su:

Now MSYS2 is ready for you. You will probably want to install some tools and the mingw-w64 GCC to start compiling:

pacman -S --needed base-devel mingw-w64-x86_64-toolchain

配置VSCODE

Prerequisites#

To successfully complete this tutorial, you must do the following steps:

Check your MinGW installation#

  1. Install Visual Studio Code.

  2. Install the C/C++ extension for VS Code. You can install the C/C++ extension by searching for 'c++' in the Extensions view (Ctrl+Shift+X).

  1. Get the latest version of Mingw-w64 via MSYS2, which provides up-to-date native builds of GCC, Mingw-w64, and other helpful C++ tools and libraries. Click here to download the MSYS2 installer. Then follow the instructions on the MSYS2 website to install Mingw-w64.

  2. Add the path to your Mingw-w64 bin folder to the Windows PATH environment variable by using the following steps:

    1. In the Windows search bar, type 'settings' to open your Windows Settings.
    2. Search for Edit environment variables for your account.
    3. Choose the Path variable and then select Edit.
    4. Select New and add the Mingw-w64 destination folder path to the system path. The exact path depends on which version of Mingw-w64 you have installed and where you installed it. If you used the settings above to install Mingw-w64, then add this to the path: C:\msys64\mingw64\bin.
    5. Select OK to save the updated PATH. You will need to reopen any console windows for the new PATH location to be available.

To check that your Mingw-w64 tools are correctly installed and available, open a new Command Prompt and type:

g++ --version
gdb --version

If you don't see the expected output or g++ or gdb is not a recognized command, make sure your PATH entry matches the Mingw-w64 binary location where the compilers are located. If the compilers do not exist at that PATH entry, make sure you followed the instructions on the MSYS2 website to install Mingw-w64.

Create Hello World#

From a Windows command prompt, create an empty folder called projects where you can place all your VS Code projects. Then create a sub-folder called helloworld, navigate into it, and open VS Code in that folder by entering the following commands:

mkdir projects
cd projects
mkdir helloworld
cd helloworld
code .

The "code ." command opens VS Code in the current working folder, which becomes your "workspace". As you go through the tutorial, you will see three files created in a .vscode folder in the workspace:

#include <iostream>
#include <vector>
#include <string>using namespace std;int main()
{vector<string> msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"};for (const string& word : msg){cout << word << " ";}cout << endl;
}
  • tasks.json (build instructions)
  • launch.json (debugger settings)
  • c_cpp_properties.json (compiler path and IntelliSense settings)

Add a source code file#

In the File Explorer title bar, select the New File button and name the file helloworld.cpp.

Build helloworld.cpp#

Next, you'll create a tasks.json file to tell VS Code how to build (compile) the program. This task will invoke the g++ compiler to create an executable file based on the source code.

From the main menu, choose Terminal > Configure Default Build Task. In the dropdown, which will display a tasks dropdown listing various predefined build tasks for C++ compilers. Choose g++.exe build active file, which will build the file that is currently displayed (active) in the editor.

This will create a tasks.json file in a .vscode folder and open it in the editor.

Your new tasks.json file should look similar to the JSON below:

{"tasks": [{"type": "cppbuild","label": "C/C++: g++.exe build active file","command": "C:/msys64/mingw64/bin/g++.exe","args": ["-g", "${file}", "-o", "${fileDirname}\\${fileBasenameNoExtension}.exe"],"options": {"cwd": "${fileDirname}"},"problemMatcher": ["$gcc"],"group": {"kind": "build","isDefault": true},"detail": "compiler: C:/msys64/mingw64/bin/g++.exe"}],"version": "2.0.0"
}

The command setting specifies the program to run; in this case that is g++. The args array specifies the command-line arguments that will be passed to g++. These arguments must be specified in the order expected by the compiler. This task tells g++ to take the active file (${file}), compile it, and create an executable file in the current directory (${fileDirname}) with the same name as the active file but with the .exe extension (${fileBasenameNoExtension}.exe), resulting in helloworld.exe for our example.

Note: You can learn more about tasks.json variables in the variables reference.

The label value is what you will see in the tasks list; you can name this whatever you like.

The "isDefault": true value in the group object specifies that this task will be run when you press Ctrl+Shift+B. This property is for convenience only; if you set it to false, you can still run it from the Terminal menu with Tasks: Run Build Task.

Running the build#

  • Go back to helloworld.cpp. Your task builds the active file and you want to build helloworld.cpp.

  • To run the build task defined in tasks.json, press Ctrl+Shift+B or from the Terminal main menu choose Run Build Task.

  • When the task starts, you should see the Integrated Terminal panel appear below the source code editor. After the task completes, the terminal shows output from the compiler that indicates whether the build succeeded or failed. For a successful g++ build, the output looks something like this:

  • Create a new terminal using the + button and you'll have a new terminal with the helloworld folder as the working directory. Run dir and you should now see the executable helloworld.exe.

  1. You can run helloworld in the terminal by typing helloworld.exe (or .\helloworld.exe if you use a PowerShell terminal).

Note: You might need to press Enter a couple of times initially to see the PowerShell prompt in the terminal. This issue should be fixed in a future release of Windows.

Modifying tasks.json#

You can modify your tasks.json to build multiple C++ files by using an argument like "${workspaceFolder}\\*.cpp" instead of ${file}. This will build all .cpp files in your current folder. You can also modify the output filename by replacing "${fileDirname}\\${fileBasenameNoExtension}.exe" with a hard-coded filename (for example "${workspaceFolder}\\myProgram.exe").

Debug helloworld.cpp#

Next, you'll create a launch.json file to configure VS Code to launch the GDB debugger when you press F5 to debug the program.

  1. From the main menu, choose Run > Add Configuration... and then choose C++ (GDB/LLDB).
  2. You'll then see a dropdown for various predefined debugging configurations. Choose g++.exe build and debug active file.

VS Code creates a launch.json file, opens it in the editor, and builds and runs 'helloworld'.

{"version": "0.2.0","configurations": [{"name": "g++.exe - Build and debug active file","type": "cppdbg","request": "launch","program": "${fileDirname}\\${fileBasenameNoExtension}.exe","args": [],"stopAtEntry": false,"cwd": "${fileDirname}","environment": [],"externalConsole": false,"MIMode": "gdb","miDebuggerPath": "C:\\msys64\\mingw64\\bin\\gdb.exe","setupCommands": [{"description": "Enable pretty-printing for gdb","text": "-enable-pretty-printing","ignoreFailures": true}],"preLaunchTask": "C/C++: g++.exe build active file"}]
}

The program setting specifies the program you want to debug. Here it is set to the active file folder ${fileDirname} and active filename with the .exe extension ${fileBasenameNoExtension}.exe, which if helloworld.cpp is the active file will be helloworld.exe.

By default, the C++ extension won't add any breakpoints to your source code and the stopAtEntry value is set to false.

Change the stopAtEntry value to true to cause the debugger to stop on the main method when you start debugging.

Note: The preLaunchTask setting is used to specify task to be executed before launch. Make sure it is consistent with the tasks.json file label setting.

Start a debugging session#

  1. Go back to helloworld.cpp so that it is the active file.
  2. Press F5 or from the main menu choose Run > Start Debugging. Before you start stepping through the source code, let's take a moment to notice several changes in the user interface:
  • The Integrated Terminal appears at the bottom of the source code editor. In the Debug Output tab, you see output that indicates the debugger is up and running.

  • The editor highlights the first statement in the main method. This is a breakpoint that the C++ extension automatically sets for you:

  • The Run view on the left shows debugging information. You'll see an example later in the tutorial.

  • At the top of the code editor, a debugging control panel appears. You can move this around the screen by grabbing the dots on the left side.

Step through the code#

C/C++开发资源及下载汇总相关推荐

  1. Windows Mobile开发资源相关下载收录

    最近收集了些关于Windows Mobile开发必备工具.以下资源完全是自己下载过的,直接从迅雷下载页面拷贝过来的地址.链接应该没问题的. Windows Mobile 6 Professional ...

  2. Kinect开发资源汇总

    Kinect开发资源汇总   转自: http://www.sigvc.org/bbs/forum.php?mod=viewthread&tid=254&highlight=kinec ...

  3. 微信小程序最新开发资源汇总,对学习微信小程序的新手有一定帮助

    微信小程序最新开发资源汇总,希望给想学习或正在学习微信小程序开发的同学们带来一定帮助,汇总的小程序资源有点繁杂,各种类型的小程序demo都有,大家可以选择自己想要的demo进行下载学习.这些微信小程序 ...

  4. 全新的Windows Phone 8开发资源汇总

    MS Bulid 2012大会已经拉开帷幕了!早上起来刷微博,都是关于Windows Phone 8发布的消息. 我想把目前找到的关于Windows Phone 8最新的开发资源汇总一下分享给大家. ...

  5. 开发日记 第一节 生活中学习的一些资源链接(汇总)

    第一节 生活中学习的一些资源链接(汇总) 序 一.学习平台 二.英语学习 三.IT编程学习 四.软件资源 五.其它学习资源 序 推荐使用电脑端打开本页面的一些指向链接,手机端打开会有时间较长的页面转码 ...

  6. Mac和ios开发资源汇总

    目录 1.苹果官方文档 2.邮件列表 3.论坛 4.网站 5.博客 6.大会 7.播客和录像 正文 1.苹果官方文档 构建iOS程序:下面的这篇文章介绍了 iOS 程序开发的过程: Start Dev ...

  7. Mac和iOS开发资源汇总—更新于2013-10-14

    From:http://beyondvincent.com/blog/2013/07/18/106/ 1U55JG9-0 小引 本文主要汇集一些苹果开发的资源,会经常更新,建议大家把这篇文章单独收藏( ...

  8. Windows Phone 7 开发资源汇总

    MSDN 手机开发入门(中文) http://msdn.microsoft.com/zh-cn/ff380145.aspx Windows Phone 7的界面演示(英文): http://www.w ...

  9. qgc地面站如何导入离线地图_地面站开发资源汇总

    地面站是整个无人机系统非常重要的组成部分,是地面操作人员直接与无人机交互的渠道.它包括任务规划.任务回放.实时监测.数字地图.通信数据链在内的集控制.通信.数据处理于一体的综合能力,是整个无人机系统的 ...

最新文章

  1. Python IDLE theme
  2. windbg 查看结构体_用WinDbg进行调试
  3. when is IBASE status changed from inital to created - not answered
  4. iBatis入门和开发环境搭建
  5. hbase hmaster启动起来就自动关闭
  6. 基于Teigha.Net实现CAD到SHP的转换方案
  7. sqoop导出数据时如何选择update-key
  8. Adobe Flash Professional CS6安装失败问题
  9. drcom linux最新版,Ubuntu高于8.04版本的源码安装drcom
  10. html 斜线表头,HTML 斜线 表头
  11. 你认识5G物联网关键器件FBG吗
  12. 区别重要的事情及不要盲目增加计划提前期
  13. ABB 120 六轴机械手臂编程调试(四) 三菱plc控制器配套程序
  14. DEM数据(ASTER GDEM|SRTM|GLS2005|ALOS DEM|NASA DEM)下载
  15. IIS7用FastCGI运行PHP配置
  16. 计算机科学家王选说过的名句,王选:科学家最初的动力是对未知领域进行的探索...
  17. 劝大家别去国企制造业干IT,软件多数据乱,报表开发完全没法做
  18. 简单的python脚本-python基础练习之几个简单的游戏
  19. 博客,改变的不仅仅是图书(转载)
  20. 索引器Indexers

热门文章

  1. Python 使用openpyxl读取excel字体颜色与单元格颜色
  2. JAVA飞机大战游戏附源码
  3. 视频!ASP.NET MVC 音乐商店 - 1 创建项目 2 控制器
  4. 在微信公众平台注册一个小程序开发账号
  5. CodecPrivateData 解析
  6. 左连接、右连接、内连接、全外连接的区别是什么?
  7. 云电脑塔建教程(esxi版)
  8. GIS 克隆 IClone
  9. 【单片机毕业设计】基于单片机的空气质量(甲醛、CO)检测系统的设计
  10. java三张扑克牌_java入门三—扑克牌简易游戏