当前位置: 技术问答>linux和unix
mingw中怎么加载动态链接库管理命令
来源: 互联网 发布时间:2016-11-20
本文导语: 我安装http://wenku.baidu.com/view/949d430c844769eae009ed4a.html 安装了pcre 按照步骤写了/etc/ld.so.conf cd /etc ld -d ld.so.conf 后将库文件导入cashe时出错 因为是安装的mingw不能用ldconfig命令 使用ld命令 提示 file format not recognized;treati...
我安装http://wenku.baidu.com/view/949d430c844769eae009ed4a.html
安装了pcre
按照步骤写了/etc/ld.so.conf
cd /etc
ld -d ld.so.conf
后将库文件导入cashe时出错
因为是安装的mingw不能用ldconfig命令 使用ld命令
提示
file format not recognized;treating as linker script
看解释 是格式不对 命令也不对。。
求 mingw中 动态加载命令
由于要安装swig 在make时候提示没找到pcre,所以就先安pcre。。
安装了pcre
按照步骤写了/etc/ld.so.conf
cd /etc
ld -d ld.so.conf
后将库文件导入cashe时出错
因为是安装的mingw不能用ldconfig命令 使用ld命令
提示
file format not recognized;treating as linker script
看解释 是格式不对 命令也不对。。
求 mingw中 动态加载命令
由于要安装swig 在make时候提示没找到pcre,所以就先安pcre。。
|
linux下用mingw么...