美文网首页
Error: C++14 standard requested

Error: C++14 standard requested

作者: 闹钟又响了 | 来源:发表于2021-09-03 03:09 被阅读0次

在R中安装包如果遇到上述问题,基本上去修改一下Makevars文件即可。
可以用vim编辑,
也可以在R中编辑,如下
dotR <- file.path(Sys.getenv("HOME"), ".R")
if (!file.exists(dotR)) dir.create(dotR)
M <- file.path(dotR, "Makevars")
if (!file.exists(M)) file.create(M)
cat("\nCXX14FLAGS=-O3 -march=native -mtune=native -fPIC",
"CXX14=/project/software/gcc-11.2.0/gcc_compile/bin/g++",
file = M, sep = "\n", append = TRUE)

相关文章

网友评论

      本文标题:Error: C++14 standard requested

      本文链接:https://www.haomeiwen.com/subject/cayhwltx.html