建立R: - with-libtiff不启用TIFF功能

时间:2017-03-03 18:33:56

标签: r ubuntu build libtiff

从源代码编译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

我确实有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功能。为什么,以及如何强制启用它?

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。 R configure脚本使用tiff测试pkg-config是否存在,但在失败时不提供任何反馈。

我通过将PKG_CONFIG环境变量设置为指向包含文件libtiff-4.pc的目录来解决此问题。