无法打开共享对象 cygmpfr-1.dll
我正在测试 CeGCC,这是一个为将应用程序交叉编译到 Windows CE 设备而构建的 gcc。正如每个人测试编译器一样,我做了一个 Hello World 程序:
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}
由于我现在使用 Windows(因为这是我的另一台笔记本电脑),所以我使用 Cygwin。但是当我尝试编译时,出现了一些错误,正如您在终端日志中看到的那样:
C:\Dev\WinCE\Test>arm-mingw32ce-gcc test.c
/opt/mingw32ce/libexec/gcc/arm-mingw32ce/4.4.0/cc1.exe:加载共享库时出错:cygmpfr-1.dll:无法打开共享对象文件:没有这样的文件或目录C:\Dev\WinCE\Test>
我能做些什么?
I'm testing CeGCC, that is a gcc built to cross-compile applications to Windows CE devices. As everyone do to test compilers, I've done a Hello World program:
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}
As I'm using Windows now(because this is my other laptop), I'm using Cygwin. But when I tried to compile I got some errors, as you can see on the terminal log:
C:\Dev\WinCE\Test>arm-mingw32ce-gcc test.c
/opt/mingw32ce/libexec/gcc/arm-mingw32ce/4.4.0/cc1.exe: error while loading shared libraries: cygmpfr-1.dll: cannot open shared object file: No such file or directoryC:\Dev\WinCE\Test>
What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 cygwin 中安装 libmpfr1 软件包。
苏拉诺
Install libmpfr1 package in cygwin.
Surranó