通过嵌入式PowerPC设备访问SQL SERVER数据库, 采用ODBC 方式。
一, 交叉编译UnixODBC, 此编译过程较为顺利
1, 下载unixODBC, 下载路径为http://www.unixodbc.org/, 版本号为2.3.4
2, 解压缩 ,tar -xvf unixODBC-2.3.4.tar.gz
3, 配置编译,./configure --prefix=/usr/local/unixODBC-2.3.4 --host=ppc-linux
4, 编译, make
5, 安装, make install
二, 交叉编译freetds,遇到较为奇葩的事情
1, 下载freetds, ftp://ftp.freetds.org/pub/freetds/current/, 版本号为0.91
2, 解压缩,采用7-zip
3, 配置编译,./configure --host=ppc-linux --prefix=/usr/local/freetds-0.91 --with-tdsver=7.0 --enable-msdblib --disable-libiconv --with-unixodbc=/usr/local/unixODBC-2.3.4
4, 编译 make(注,将unixODBC生成文件夹下的odbc_config修改名称,解决freetds编译test文件失败问题)
起初,将freetds拷贝至虚拟机中进行编译, 编译失败,提示:/bin/sh: ./txt2man: No such file or directory错误。
尝试,直接将freetds从Windows共享文件夹下进行编译,通过,汗。
5,安装make install
***环境配置及测试待续!!!***