Microsoft visual c++ build tools的安装与使用

Microsoft visual c++ build tools的安装与使用

用法:

  • The Microsoft Visual C++ Build Tools installs only the command-line compiler, tools, and libraries you need to build C and C++ programs.

  • Microsoft Visual c++构建工具只安装构建C和c++程序所需的命令行编译器、工具和库。
    It’s perfect for build labs or classroom exercises and installs relatively quickly.

  • 它非常适合构建实验室或课堂练习,安装速度也相对较快。
    To install only the command-line tools, download and install Microsoft Visual C++ Build Tools 2015.

  • 要想只安装命令行工具,请下载并安装Microsoft Visual c++ Build tools 2015。
    The following tools can help you to build a C/C++ project on the command line.
    以下工具可以帮助您在命令行上构建C/ c++项目。

  • 1.CL
    Use the compiler (cl.exe) to compile and link source code files into apps, libraries, and DLLs.
    使用编译器(cl.exe)将源代码文件编译并链接到应用程序、库和dll。

  • 2.Link
    Use the linker (link.exe) to link compiled object files and libraries into apps and DLLs.
    使用链接器(link.exe)将编译后的目标文件和库链接到应用程序和dll中。

  • 3.MSBuild (Visual C++)
    Use MSBuild (msbuild.exe) to build Visual C++ projects and Visual Studio solutions.
    使用MSBuild (MSBuild .exe)构建Visual c++项目和Visual Studio解决方案。
    This is equivalent to running the Build project or Build Solution command in the Visual Studio IDE.
    这相当于在Visual Studio IDE中运行构建项目或构建解决方案命令。

  • 4.DEVENV
    Use DEVENV (devenv.exe) combined with a command-line switch—for example, /Build or /Clean—to perform certain build commands without displaying the Visual Studio IDE.
    结合使用DEVENV (DEVENV .exe)和命令行开关——例如/Build或/ clean——来执行某些构建命令,而无需显示Visual Studio IDE。

  • 5.NMAKE
    Use NMAKE (nmake.exe) to automate tasks that build Visual C++ projects by using a traditional makefile.
    使用NMAKE (NMAKE .exe)来自动化使用传统makefile构建Visual c++项目的任务。

链接:
点这里

下载完成后打开,勾选你想要安装的东西就可以啦

猜你喜欢

转载自blog.csdn.net/weixin_46490003/article/details/108894804
今日推荐