从源代码编译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
我有libtiff4
和libtiff4-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
function已被跳过。 为什么,我如何强制它被启用?
我有同样的问题。 R配置脚本使用pkg-config
测试tiff
是否存在,但是在失败时不提供任何反馈。
我通过设置PKG_CONFIG
环境变量来指向包含文件libtiff-4.pc
的目录来解决这个libtiff-4.pc
。