3

これが私がしていることです。これは純粋に私のWindowsシステムのPuTTyを介してSolarisVMに接続します。

# 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はシステム/リンカーパッケージに含まれています。

于 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 に答える