繁体   English   中英

qemu makefile错误找不到我知道的库

[英]qemu makefile error cannot find library that I know is there

当我为qemu运行make时,一切正常,直到:

LINK ppc-softmmu/qemu-system-ppc /usr/bin/ld: cannot find -latk-1.0 /usr/bin/ld: cannot find -lgdk_pixbuf-2.0 /usr/bin/ld: cannot find -lselinux /usr/bin/ld: cannot find -lharfbuzz /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libX11.a(CrGlCur.o): In function open_library': (.text+0x32): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usr/bin/ld: cannot find -lffi ../os-posix.o: In function change_process_uid': /mnt/qemu-latest/qemu/os-posix.c:173: warning: Using 'initgroups' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking

等等,并且失败并显示错误。

我以为可能缺少这些库,所以我在latk-1.0和其他库上尝试了ld -latk-1.0 -verbose,这给了我:

...attempt to open //lib/x86_64-linux-gnu/libatk-1.0.a failed attempt to open //lib64/libatk-1.0.so failed attempt to open //lib64/libatk-1.0.a failed attempt to open //usr/lib/x86_64-linux-gnu/libatk-1.0.so succeeded -latk-1.0 (//usr/lib/x86_64-linux-gnu/libatk-1.0.so) libgobject-2.0.so.0 needed by //usr/lib/x86_64-linux-gnu/libatk-1.0.so found libgobject-2.0.so.0 at //usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0 libglib-2.0.so.0 needed by //usr/lib/x86_64-linux-gnu/libatk-1.0.so found libglib-2.0.so.0 at //lib/x86_64-linux-gnu/libglib-2.0.so.0 libc.so.6 needed by //usr/lib/x86_64-linux-gnu/libatk-1.0.so found libc.so.6 at //lib/x86_64-linux-gnu/libc.so.6 libffi.so.6 needed by //usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0 found libffi.so.6 at //usr/lib/x86_64-linux-gnu/libffi.so.6 libpcre.so.3 needed by //lib/x86_64-linux-gnu/libglib-2.0.so.0 found libpcre.so.3 at //lib/x86_64-linux-gnu/libpcre.so.3 libpthread.so.0 needed by //lib/x86_64-linux-gnu/libglib-2.0.so.0 found libpthread.so.0 at //lib/x86_64-linux-gnu/libpthread.so.0 ld-linux-x86-64.so.2 needed by //lib/x86_64-linux-gnu/libc.so.6 found ld-linux-x86-64.so.2 at //lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 ld: warning: cannot find entry symbol _start; not setting start address

它为据称找不到的所有其他库执行此操作。 我不知道为什么make找不到这些库,是因为它只在寻找静态库吗? 如果是这种情况,我如何获得这些的静态库? 谢谢。

嗨,没关系,我已修复它。

问题是我正在从事的项目已经交到了很多人的手中,而且文档稀疏,所以我一直在扮演侦探,试图使事情重新起作用。

只需重新配置它并取出--static选项

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM