I've started learning C++ and wrote a "Hello World"-Program. When i try to run it in command prompt, it crashes and gives me a windows message saying "Hello World.exe has stopped working.".
Code:
#include <iostream>
#include <string>
int main()
{
std::string response;
std::cout << "Hallo Welt\n";
std::cin >> response;
std::cout << "User: " << response;
return(0);
}
I'm using Eclipse IDE and MinGW as compiler. I've already set the path of MinGW/bin in the environment variables. After i copied all dll's form the MinGW/bin directory into the folder of the Hello World.exe the program worked smoothly. So it seems that whatever it is that needs those dll's cannot access them properly. I'd like to spare me the hassle of copying the dll's for every project i create. Is there any way i could work around that?
I'm not really confident about my computer and programming terminology yet so the description might seem a bit rough - help is still greatly appreciated!
Cheers!
The following instructions did the work for me so I add them here for future reference as this problem took quite some time.
Please note that step 8 is the one that solves the problem.
Note: You should also copy
freeglut.dll
in the directory where your.exe
is located.I had the exact same problem. And what i found is that there might be different versions of the same DLL on my Path. So i simply moved my C:\MinGW\bin path from the end of the Path list to the front and now it's working. But maybe this solution breaks some other software that relies on the other version of the DLL file.