in reply to Re^2: How to build DBD::MySQL
in thread How to build DBD::MySQL
I'm no expert in the specifics of the DBD::mysql build process, but this line in the make messages
dlltool --def mysql.def --output-exp dll.exp
looks as if it's trying to create a dll.exp itself (from a mysql.def), which is then being referenced in the subsequent compile/link step. In other words, I would not try to create a libmysql.a myself, but rather just rename the output of "reimp libmysql.lib" to mysql.def, and leave the rest to the build process as is... Just an idea, though. Hope it helps.
(Be sure to also check whether the .def file does in fact contain the symbols that are being reported as "undefined"...)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to build DBD::MySQL
by fredo2906 (Acolyte) on Jul 15, 2008 at 13:49 UTC |