Compile libexiv on windows, error libstdc++.dll.a

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?


Replies

RE: Compile libexiv on windows, error libstdc++.dll.a - Added by Dmitri - 35 days 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 35 days ago

Thanks, I finally managed to compile the library