libiconv Solaris-sparc/opteron 64 位
我有 64 位 Solaris - sparc 和 opteron 系统。在 /usr/local/lib 下,我可以看到两个系统的 libiconv.so 。 libiconv.so 上的文件命令给出以下输出:-
ELF 32-bit LSB dynamic lib 80386 Version 1, dynamically linked, not stripped, no debugging information available
如何在 sparc 和 opteron 系统上构建 64 位 libiconv 而不干扰现有的 32 位?原因是,我不知道 libiconv 的现有版本。
I have 64 bit solaris - sparc and opteron systems. Under /usr/local/lib , I can see libiconv.so for both systems. The file command on libiconv.so gives following output:-
ELF 32-bit LSB dynamic lib 80386 Version 1, dynamically linked, not stripped, no debugging information available
How do I build 64 bit libiconv w/o disturbing existing 32 bit on both sparc and opteron systems? Reason being, I am not aware of existing version of libiconv.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此 libiconv.so 不是非标准 /usr/local/lib 中操作系统的一部分。如果您想自己构建或从其他地方安装该库的 64 位版本,则可以将其安装在 /usr/local/lib/amd64 或 /usr/local/lib/64 中。
然而,这可能首先是无用的,因为 Solaris 已经在其标准 C 库中包含了 iconv 库函数,因此 Gnu libiconv 在这里基本上是多余的和不必要的。
This libiconv.so is not part of the OS being in the non standard /usr/local/lib. Should you want to build yourself or install from elsewhere a 64 bit version of this library, you would install it in /usr/local/lib/amd64 or /usr/local/lib/64.
However, this is probably useless in the first place as Solaris already includes the iconv library function in its standard C library so Gnu libiconv is basically redundant and unnecessary here.