Can I use Visual C++ compiler without Visual Studio? [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
Is there any way that I can use Visual C or Visual C++ compilers from the command line without having to install visual studio?
I have tried it before, and I couldn't find one. Seeking help.

Yes you can, for example Windows SDK comes with a Visual C++ compiler, but it doesn't contain Visual Studio, a quick search found this msdn page.
LE "brilliant" decision from Microsoft: it seems that newer Windows SDK doesn't come with compilers, so you need to install Visual Studio to have what to use from command line.

Related

MSVCP140D.dll missing, is there a way around? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I have made an encryption application in visual studio 2017. work fine in a environment with VS2017 already installed but the application is not portable.
In a environment where not version of VS is installed a error show up.
MSVCP140D.dll missing
I don't want to download everytime Visual Studio for fixing this error, is there a way to prevente it ?
More information about the application :
Compiled in VS2017
made on Windows 10 x64
use Tiny file dialogue
You should distribute release version of executable that will depend upon VS 2017 redistributable package rather than debug version that depend on debug runtime libraries (notice the D suffix in library name).
You can link the runtime library statically, or provide the VS 2017 redistributable.

Where is Multibyte MFC Library for Visual Studio 2015 community ed? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have installed Visual Studio 2015 community ed, made sure I clicked MFC under C++.
Now I can build default wizard generated app, but if I switch to 'not set' char set, it will not compile, complain it needs MBSC libraries.
All links I have found via searches and forums are dead or missing.
Anyone knows where I can find Multibyte MFC Library for Visual Studio 2015 community ed ?

How to open Visual Studio Express 2013 for Windows Desktop (C++)? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I downloaded and installed Visual Studio Express 2013 for Windows Desktop, and now I want to start it. I expected I could just go to Metro and type, but nothing (relevant) comes up! I tried to find the installation folder but can't find it. There are a few versions of Visual Studio but none of them say "Express 2013". Despite how I sound, I'm not a complete idiot when it comes to computers, but I just can't seem to open Visual Studio Express 2013 for Windows Desktop, well, the C++ IDE anyway. I have read the official "Getting Started" guides but they don't tell me how to actually open it! Why can't it be as easy as opening IntelliJ IDEA or PyCharm?
Ok for all who have trouble opening VS you can do it like so:
In the search area of Start type run and in the run window type devenv.
You can also press Win + R to open the run window.

C++ project is out of date error when build on visual studio 2008 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 8 years ago.
Improve this question
I am trying to build c++ project in visual studio 2008 which was made in visual studio 2010.
It is giving project is out of date error .
I think its a kind of linker error ,nothing from google worked.
it is an open gl c++ project .
Kindly help me
You are right ,problem is there in linker or entry point like difference between int main and int _main()
just go in the properties of the poject and set entry point

Intel C++ compiler integration in Visual Studio 2012 [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I want to do parallel programming using thread building blocks (tbb). The Intel C++ compiler provides tbb. Can someone help me integrate this compiler into Visual Studio 2012.
Did you try reading the manual? Where are you stuck, exactly? The Intel documentation for the compiler has a section entitled, "Using Microsoft Visual Studio" you could refer to and everything. http://software.intel.com/en-us/node/458838