libstdc++-6.dll not found

I tried to use eclipse for c++ programming instead of code-blocks. and i created a simple "helloworld.cpp" program

1
2
3
4
5
6
7
8
#include <iostream>
using namespace std;

int main()
{
	cout << "!!!Hello World!!!" << endl; 
	return 0;
}



but when i run the program it gives a error message saying, libstdc++-6.dll not found! please help :(
Last edited on
You need to download libstdc++-6.dll. I'm not sure how the folders for eclipse are set up, but there may be a folder called bin ( if there is put the .dll there). If not, try putting it in the same directory as your code. https://code.google.com/p/wtfu/downloads/detail?name=libstdc%2B%2B-6.dll&can=2&q=
@niven do i drop it in C:\MinGW\bin ?
Topic archived. No new replies allowed.