Reputation: 416
My Eclipse didn't show any console outputs. I tested the ".exe" in the debug file of my C++ project, with wich i received an error that "libgcc_s_dw2-1.dll" was missing. I read abit on this and i found that i could simply copy/paste that file from my c:/MinGW/bin folder to the ".exe" in the "/debug" folder of my project. That helped me with that error but i then received the message that "libstdc++-6.dll" was missing, so i did the same again.
Now The ".exe" works fine and I get an output in my eclipse.
But now i'm afraid that i will get simillar erro's at my next build if i use some what more complex programming. I also think that it would be very timeconsuming if i have to add those files too all of my future projects.
Question: So my question now isn't there a way to tell eclpise that those .dll files are at "c:/MinGW/bin"?
PS. I suspect that a similar question already exists but I wouldn't have a clue on what tags I'd have to search for.
Upvotes: 1
Views: 472
Reputation: 416
Speacial thanks to @Deniz !
result in adding ";C:\MinGW\bin"
Upvotes: 2