0

我正在尝试使用 gcc 将 libtiff 4.0 beta 编译为 Ubuntu 10.10 上的静态库。似乎可以很好地编译 libjpeg 和 libz,它们是依赖项。这是我得到的错误

    libtool: link: ( cd ".libs" && rm -f "libtiff.la" && ln -s "../libtiff.la" "libtiff.la" )
\
    source='tif_stream.cxx' object='tif_stream.lo' libtool=yes \
    DEPDIR=.deps depmode=none /bin/bash ../config/depcomp \
    /bin/bash ../libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.      -c -o tif_stream.lo tif_stream.cxx
libtool: compile:  g++ -DHAVE_CONFIG_H -I. -c tif_stream.cxx  -o .libs/tif_stream.o
../libtool: line 990: g++: command not found

关于如何解决这个问题的任何想法?

4

2 回答 2

3

​安装g++​包​。​</p>

于 2011-03-22T17:32:31.127 回答
1

我认为你的编译链是不完整的。在 ubuntu 上,尝试安装名为 build-essentials 的包。这应该会引入编译 c 和 c++ 库所需的所有工具。

于 2011-03-22T22:24:05.537 回答