我已经咨询了与我的特定问题相关的现有SO条目,但仍无法解决。
我正在尝试使用工作权限有限的机器在工作,但我可以运行Rtools.exe,因此安装了它。
我对R的设置是:
platform x86_64-w64-mingw32
arch x86_64
os mingw32
system x86_64, mingw32
version.string R version 3.3.0 (2016-05-03)
我是RStudion版本0.99.902。我安装了Rtools版本3.3.0.1959。
所有R,Rstudio和Rtools都安装在C:/WORK/中,在这里我具有一些有限的管理员权限。
在我的系统ENV变量中,我设置了:
C:\\WORK\\Rtools\\bin; C:\\WORK\\Rtools\\gcc- 4.6.3\\bin; C:\\WORK\\R-3.3.0\\bin\\x64;"
当我运行时
system('where make')
我懂了
C:\WORK\Rtools\bin\make.exe
当我运行时
system('g++ -v')
我得到:
Using built-in specs.
COLLECT_GCC=C:\WORK\Rtools\GCC-46~1.3\bin\G__~1.EXE
COLLECT_LTO_WRAPPER=c:/WORK/rtools/gcc-46~1.3/bin/../libexec/gcc/i686-w64- mingw32/4.6.3/lto-wrapper.exe
Target: i686-w64-mingw32
Configured with: /data/gannet/ripley/Sources/mingw-test3/src/gcc/configure --host=i686-w64-mingw32 --build=x86_64-linux-gnu --target=i686-w64-mingw32 --with-sysroot=/data/gannet/ripley/Sources/mingw-test3/mingw32mingw32/mingw32 --prefix=/data/gannet/ripley/Sources/mingw-test3/mingw32mingw32/mingw32 --with-gmp=/data/gannet/ripley/Sources/mingw-test3/mingw32mingw32/prereq_install --with-mpfr=/data/gannet/ripley/Sources/mingw-test3/mingw32mingw32/prereq_install --with-mpc=/data/gannet/ripley/Sources/mingw-test3/mingw32mingw32/prereq_install --disable-shared --enable-static --enable-targets=all --enable-languages=c,c++,fortran --enable-libgomp --enable-sjlj-exceptions --enable-fully-dynamic-string --disable-nls --disable-werror --enable-checking=release --disable-win32-registry --disable-rpath --disable-werror CFLAGS='-O2 -mtune=core2 -fomit-frame-pointer' LDFLAGS=
Thread model: win32
gcc version 4.6.3 20111208 (prerelease) (GCC)
编译时,出现以下错误:
Error in compileCode(f, code, language = language, verbose = verbose) :
Compilation ERROR, function(s)/method(s) not created!
c:/Rtools/mingw_64/bin/g++: not found
我的问题是:为什么R还在寻找g++
c:/Rtools/mingw_64/bin/g++
我不是已经设定R在其中寻找
C:/WORK/Rtools?
即使我手动添加
c:/WORK/Rtools/mingw_64/bin/g++
在ENV变量中,我仍然遇到相同的错误。 (由于管理员权限,我无法在C:/中创建Rtools文件夹。)
有没有人遇到这个特定的问题?
最佳答案
路径c:/Rtools/mingw_64/bin/
硬编码为R安装文件中的Makeconf
文件(在我的情况下为C:\Progs\R\R-3.4.1\etc\x64
),作为变量BINPREF的值。
最简单的方法是将此路径更改为您的路径C:/WORK/Rtools/bin
(在我的情况下是C:/Progs/RTools/3.4/mingw_64/bin/
)。在新安装的R-3.4.1和Rtools3.4以及一个最小的示例中,这对我有用。
关于c++ - 已安装Rcpp Rtools,但未找到错误消息g++,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39090983/