Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to get separate Visual C++ compiler for Windows SDK 8?

Tags:

visual-c++

In Windows SDK 8 "Visual C++ Compilers and C Runtime (CRT)" was removed:

The following items were either changed or removed from this version of the Windows SDK.

  1. Command-line Build Environment The Windows SDK no longer ships with a complete command-line build environment. The Windows SDK now requires a compiler and build environment to be installed separately.

Where can I get these separately, without downloading Visual Studio? I want to get old command line build environment, but can't find download link.

like image 253
e_chekan Avatar asked Aug 06 '13 11:08

e_chekan


People also ask

Does Visual Studio come with compilers?

Visual Studio gives you access to a wide range of choices when it comes to C++ compilers. This way you can make sure that as you develop your code, it continues to compile against all major compilers.

Where is the MSVC compiler located?

As explained above, the Microsoft C/C++ compiler is part of the Windows SDK and is natively included within your Visual Studio installation. More precisely, the default path where you'll find the compiler is C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin . The compiler is cl.exe .

Is Visual Studio compiler free?

Visual Studio Community 2022A free, fully featured, and extensible solution for individual developers to create applications for Android, iOS, Windows, and the web.


2 Answers

http://www.visualstudio.com/downloads/download-visual-studio-vs#d-express-windows-8

This is the Express edition page for Visual Studio 2013. These can all be installed at the same time to give Web/Store/Desktop/Console based application development.

They can be used for commercial purposes and also download as ISO files for reinstall at a later time.

You can install the desktop version and select what components to install to get a copy of the visual C++ compiler installed. This applies for the 2010 editions as well.

like image 178
Wayne Avatar answered Sep 28 '22 01:09

Wayne


The Command-line build environment is now available as the Visual C++ 2015 Build Tools and can be downloaded from here

These tools allow you to build C++ libraries and applications targeting Windows desktop. They are the same tools that you find in Visual Studio 2015 in a scriptable standalone installer. Now you only need to download the tools you need to build C++ projects.

like image 21
tulhan Avatar answered Sep 28 '22 02:09

tulhan