linux - "/usr/bin/ld: cannot find -lz"

我正在尝试在 Ubuntu 10.04 下编译 Android 源代码。我收到一条错误消息,

/usr/bin/ld: cannot find -lz

你能告诉我如何解决它吗? cannot find -lz 是什么意思?以下是完整的错误信息:

external/qemu/Makefile.android:1101: warning: overriding commands for target `external/qemu/android/avd/hw-config-defs.h'
external/qemu/Makefile.android:933: warning: ignoring old commands for target `external/qemu/android/avd/hw-config-defs.h'
host SharedLib: libneo_cgi (out/host/linux-x86/obj/lib/libneo_cgi.so)
/usr/bin/ld: skipping incompatible /usr/lib/gcc/i486-linux-gnu/4.4.3/../../../libz.so when searching for -lz
/usr/bin/ld: skipping incompatible /usr/lib/gcc/i486-linux-gnu/4.4.3/../../../libz.a when searching for -lz
/usr/bin/ld: skipping incompatible /usr/lib/libz.so when searching for -lz
/usr/bin/ld: skipping incompatible /usr/lib/libz.a when searching for -lz
/usr/bin/ld: cannot find -lz
collect2: ld returned 1 exit status
make: *** [out/host/linux-x86/obj/lib/libneo_cgi.so] Error 1

还有我的 GCC 版本输出:

scheung@scheung-virtual-box:/media/EXTDIV/mydroid$ gcc --version
gcc (Ubuntu 4.4.3-4ubuntu5) 4.4.3
Copyright (C) 2009 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

我已经安装了 zlib1g-dev 库:

$ sudo apt-get install zlib1g-dev 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
zlib1g-dev is already the newest version.

(我从 this link 得到。)

最佳答案

我遇到了完全相同的错误,和你一样,安装 zlib1g-dev 并没有修复它。安装 lib32z1-dev 让我通过了它。我有一个 64 位系统,它似乎想要 32 位库。

https://stackoverflow.com/questions/3373995/

相关文章:

python - 如何将 numpy 数组转换为(并显示)图像?

mysql - 错误 1045 (28000) : Access denied for user '

linux - Bash中的 'eval'命令及其典型用途

linux - 如何在 Linux 中遍历目录?

python - 如何消除数独方 block 中的凸性缺陷?

python - scikit-learn 中跨多个列的标签编码

linux - 查看 PS 命令的完整输出

linux - 单个主机上的多个 glibc 库

python - 使用 Python 进行网页抓取

python - 如果对象存在,我如何获取它,或者如果它在 Django 中不存在,我如何获取它?