Compile libexiv on windows, error libstdc++.dll.a
Added by Adonai Canez 7 months 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?
Replies
RE: Compile libexiv on windows, error libstdc++.dll.a - Added by Dmitri - 7 months ago
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.
RE: Compile libexiv on windows, error libstdc++.dll.a - Added by Adonai Canez 7 months ago
Thanks, I finally managed to compile the library