Friday, November 20, 2009

How to link libmysql.lib with Dev-C++ or GCC under windows

How to link libmysql.lib with Dev-C++ or GCC under windows

The problem is that only MS Visual C++ can link libmysql.lib but there is a trick
to compile with Dev c++(I used version 4.9.9.2) or GCC:

> reimp.exe libmysql.lib
(^ This command creates: libmysql.def AND libmysql.a)

> dlltool.exe –input-def LIBMYSQL.def –dllname libmysql.dll –output-lib libmysql.dll
(^ this creates libmysql.dll)

Now You must copy libmysql.a in the “LIB” folder of dev-cpp (Ex. …\Dev-Cpp\lib\) and
and use “-lmysql -lws2_32″ as additional linker options

This way is good for all applications who needs to compile mysql library under
windows with dev c++ or GCC

NOTE:
(1) You could found reimp here:
http://prdownloads.sourceforge.net/mingw/mingw-utils-0.2.tar.gz?download

(2) You can download my libmysql.a or libmysql.dll

No comments: