Advertisement
Guest User

Rinstall

a guest
Sep 18th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. dotR <- file.path(Sys.getenv("HOME"), ".R")
  2. if (!file.exists(dotR))
  3. dir.create(dotR)
  4. M <- file.path(dotR, "Makevars.win")
  5. if (!file.exists(M))
  6. file.create(M)
  7. cat("\nCXX14FLAGS=-O3 -Wno-unused-variable -Wno-unused-function",
  8. "CXX14 = $(BINPREF)g++ -m$(WIN) -std=c++1y",
  9. "CXX11FLAGS=-O3 -Wno-unused-variable -Wno-unused-function",
  10. file = M, sep = "\n", append = TRUE)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement