2017-03-03 7 views
0

ソースからR-3.3.2をコンパイルします。私のフラグは--with-libtiffです。それらは:./configure --with-system-tre --with-blas --with-lapack --with-libtiff --enable-R-shlib --enable-lto --prefix=/opt/new.R建物R:--with-libtiff TIFF機能を有効にしない

私はlibtiff4libtiff4-devを持っています。ただし:

R is now configured for i686-pc-linux-gnu 

    Source directory:   . 
    Installation directory: /opt/new.R 

    C compiler:    gcc -g -O2 
    Fortran 77 compiler:  f95 -g -O2 

    C++ compiler:    g++ -g -O2 
    C++11 compiler:   g++ -std=c++11 -g -O2 
    Fortran 90/95 compiler: gfortran -g -O2 
    Obj-C compiler:  gcc -g -O2 -fobjc-exceptions 

    Interfaces supported:  X11, tcltk 
    External libraries:  readline, BLAS(generic), LAPACK(generic), curl 
    Additional capabilities: PNG, JPEG, NLS, cairo, ICU 
    Options enabled:   shared R library, R profiling, strict barrier 

    Capabilities skipped:  TIFF 
    Options not enabled:  shared BLAS, memory profiling 

    Recommended packages:  yes 

TIFF機能をスキップしました。なぜ、それを強制的に有効にすることができますか?

答えて

0

私は同じ問題を抱えていました。 R configureスクリプトは、の存在をpkg-configでテストしますが、失敗した場合はフィードバックを提供しません。

ファイルlibtiff-4.pcを含むディレクトリを指すように環境変数PKG_CONFIGを設定して解決しました。

関連する問題