3

这就是我正在做的事情,这纯粹是通过我的 Windows 系统上的 PuTTy 到 Solaris VM 上。

# ls
curl-7.27.0          curl-7.27.0.tar.bz2  hostName.pl          starthere.desktop
# cd curl-7.27.0
# ls
Android.mk           README               configure.ac         m4
CHANGES              RELEASE-NOTES        curl-config.in       maketgz
CMake                acinclude.m4         curl-style.el        missing
CMakeLists.txt       aclocal.m4           depcomp              mkinstalldirs
COPYING              buildconf            docs                 packages
MacOSX-Framework     compile              include              sample.emacs
Makefile             config.guess         install-sh           src
Makefile.am          config.log           lib                  tests
Makefile.in          config.sub           libcurl.pc.in        vc6curl.dsw
Makefile.msvc.names  configure            ltmain.sh            winbuild
# ./configure
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether to enable debug build options... no
checking whether to enable compiler optimizer... (assumed) yes
checking whether to enable strict compiler warnings... no
checking whether to enable compiler warnings as errors... no
checking whether to enable curl debug memory tracking... no
checking whether to enable hiding of library internal symbols... yes
checking whether to enable c-ares for DNS lookups... no
checking for sed... /usr/bin/sed
checking for grep... /usr/bin/grep
checking for egrep... /usr/bin/egrep
checking for ar... no
configure: error: ar not found in PATH. Cannot continue without ar.
#

它位于我的桌面上。有什么建议么?我用谷歌搜索并没有任何结果=/让我知道这是否属于其他地方...

4

2 回答 2

4

对于 Solaris 10,ar 包含在 SUNWbtool 软件包中。对于 Solaris 11,ar 包含在 system/linker 包中。

于 2012-12-17T11:58:07.790 回答
3

ar 是 GNU 归档器

您需要确保提供 ar 的 binutils 在您的系统上可用。

我不熟悉 Solaris,但似乎安装“binutils”包应该可以帮助你:http ://www.opencsw.org/packages/binutils/ 。

于 2012-10-06T11:16:27.440 回答