Added by Adonai Canez 35 days ago
I'm trying to compile the lib Exiv to use in my project, but to make the compilation an error occurs I do not have the libstdc++.dll.a
Anybody know how to solve?
Yes. Open mingw/lib/gcc/mingw32/4.4.0 (check path with corresponding version of your MinGW)
File libstdc++.la
Find and modify "Names of this library":
library_names='libstdc++.dll.a'
To
library_names='libstdc++.a'
And than run make again. This should be help.
Thanks, I finally managed to compile the library