hi all,如题
    我写程序需要用到mysql5的“64位” c api,现在在64位linux机器上编译5.0.19版本后,得到一个libmysqlclient.a。
但是make的时候提示 不兼容的mysqlclient 库 ,在32位机器上用32位的mysqlclient 库编译没有问题,而且从两个版本的mysqlclient 库 大小看也不一样(说明两台机器上编译的libmysqlclient.a的确不一样),但64位的就是无法编译通过。    请问如何编译产生一个64位的libmysqlclient.a文件??ps:   我的configure选项:
./configure \
--prefix=/home/eros/local/mysql-5.0.19-3310 \
--with-charset=gb2312 \
--enable-local-infile \
--with-unix-socket-path=/home/eros/tmp/mysql.sock \
--with-tcp-port=3310 \
--with-mysqld-user=eros平台linux 2.6内核先谢了:)