Making an executable file out of a project/solution in VS2015 Community Edition (C++) [closed] - c++

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 7 years ago.
Improve this question
I'm new and trying to get on learning the C++ language but have so far been unable to find how to create an executable file. And whenever I find even close to a solution (although I can no longer seem to find the site that I found one at) I cannot seem to find the tabs or sub tabs that they say to look under. If anyone versed in Visual Studio 2015 could help me find out how to do this it would be greatly appreciated.

You are looking for "Build" or "Build Solution".
And (most likely) you are working within a "Debug configuration", so the .EXE file will be buried in a "Debug" subdirectory of your Project's directory.
Building in Visual Studio

Related

How do I find and put the correct dependances for my program? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 2 days ago.
Improve this question
I was programming in C++ a small program using QMultiMedia and QAudioOutput.
I compile and run my program in Qt (6.4) without error however when I run my program in File Explorer, when all DLLs are present, I get this error:
'could not load multimedia backend'"
QtMultimedia is not currently supported on this platform or compiler.'
So I started my research and I found several solutions however I did not understand their explanations very well (I start ...).
Here are the links I found:
-> Qt forum
-> Bugreports
-> CSDN
I tried to copy all the DLLs in mingw/bin in my folder or there is my .exe, I also copied the multimedia plugin (from mingw/plugins) to my folder or there is my .exe.
I'm on Windows 10 22h2.
Could you give me a clearer explanation? I would be very grateful.
Kind regards
Albin

Question regarding my compiler for C++ visual studio code MingGW (brand new to coding) [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 1 year ago.
Improve this question
I recently installed mingw-64 for my coding stuff since I am very new and trying to learn c++ on my freetime. I did all of the steps that they told me to do in order to start my first "hello world" program and I am getting errors when I try to run it. Did I mess up my pathing? I followed these steps https://code.visualstudio.com/docs/languages/cpp#_add-the-mingw-compiler-to-your-path
The command ./helloworld is a unix specific command, just type helloworld.exe and make sure you're in the directory of your build file.
You are simply using wrong folder to keep your file !!
just move out of the .vscode folder and make your file in the "My code" folder.

I want to be directed to my compilation errors in visual studio (C++) [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 4 years ago.
Improve this question
I am using VS community 2017 (MS Visual C++).
When I compile my project, it shows me the compilation output in the VS's console.
When I have compilation errors, it indicates the file and line of the error, in the VS's console.
But I wish the VS automatically redirected me to that file/line if I click on the error.
Obviously, it doesn't do anything after I click, because it is just a plain text console.
I'm sure there has to be a way to click on the errors and get directed to the code.
I'm tired of looking up my errors manually!
Thanks!!!
Visual studio has this built in. If you double click on the error in the error list it will take you to the file and line the error is for.
For example you would double click in the area inside the circle and it will take you to that error.
You can even get this in the output window if you double click on the error line

Box2D can't run testbed [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I ran cmake and make on Box2D with success but when I try to run the Testbed the text below is displayed in the terminal but nothing else happens.
freeglut (./Testbed):
And after this I get back the prompt. Looks like OpenGL/freeglut is not working properly because the HelloWorld is working.
The system is ubuntu 12.04
The solution was super simple, but I needed a sleep to solve it. I reinstalled the graphics driver and it works.
I logged out and logged in again, the problem is gone.
I am using Mac. Actually I installed XQuartz to solve the problem
'GL/gl.h' file not found
and then running the built binary give me the error
freeglut (./Testbed): failed to open display ''
Then I remember after installing XQuartz, there's message asking me to log out to make it take effect. And after I logging back, the built binary can run.
:)

error: symbol not found (C++) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
When I run my application, it says CXX0017 error: symbol not found, whereas that particular variable does not even exist in the code. I used it previously, and then removed it. Now, even after I cleaned and rebuilt the solution, it is still throwing it. I've checked the modules, and the PDB file is correct. Also, I deleted the PDB file and built it again, but no use. This is in Visual Studio 2010. I've searched about this, and some say that this is a bug related to Visual Studio 2010. I wanted to ask if anyone found a solution to this?
Thanks for your time
CXX0017 is a debugger error issued when a breakpoint watch uses an identifier that is not available. Remove or edit your breakpoints to stop using that identifier and the problem should go away.