Skip to content
This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
/ docs Public archive

Documentation for rtools40 and R for Windows

Notifications You must be signed in to change notification settings

r-windows/docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Using Rtools4 on Windows

Starting with R 4.0.0 (released April 2020), R for Windows uses a toolchain bundle called rtools4. This version of Rtools is based on msys2, which makes easier to build and maintain R itself as well as the system libraries needed by R packages on Windows. The latest builds of rtools4 contain 3 toolchains:

  • C:\rtools40\mingw32: the 32-bit gcc-8-3.0 toolchain for R 4.0 - 4.1
  • C:\rtools40\mingw64: the 64-bit gcc-8-3.0 toolchain for R 4.0 - 4.1
  • C:\rtools40\ucrt64: a 64-bit gcc-10.3.0 ucrt toolchain for R 4.2 1

The msys2 documentation gives an overview of the supported environments in msys2 and a comparison of MSVCRT and UCRT. The main difference between upstream msys2 and rtools4 is that our toolchains and libraries are configured for static linking, whereas upstream msys2 prefers dynamic linking. The references at the bottom of this document contain more information.

The current version of Rtools is maintained by Jeroen Ooms. Older editions were put together by Prof. Brian Ripley and Duncan Murdoch. The best place for reporting bugs is via the r-windows organization on GitHub.

Installing Rtools

Note that Rtools is only needed build R packages with C/C++/Fortran code from source. By default, R for Windows installs the precompiled "binary packages" from CRAN, for which you do not need Rtools.

To use rtools, download the installer from CRAN:

Note for RStudio users: you need at least RStudio version 1.2.5042 to work with rtools4.

Putting Rtools on the PATH

After installation is complete, you need to perform one more step to be able to compile R packages: we put the location of the Rtools make utilities (bash, make, etc) on the PATH. The easiest way to do so is by creating a text file .Renviron in your Documents folder which contains the following line:

PATH="${RTOOLS40_HOME}\usr\bin;${PATH}"

You can do this with a text editor, or from R like so (note that in R code you need to escape backslashes):

write('PATH="${RTOOLS40_HOME}\\usr\\bin;${PATH}"', file = "~/.Renviron", append = TRUE)

Restart R, and verify that make can be found, which should show the path to your Rtools installation.

Sys.which("make")
## "C:\\rtools40\\usr\\bin\\make.exe"

Now try to install an R package from source:

install.packages("jsonlite", type = "source")

If this succeeds, you're good to go! See the links below to learn more about rtools4 and the Windows build infrastructure.

Further Documentation

More documentation about using rtools4 for R users and package authors:

  • Using pacman: the new rtools package manager to build and install C/C++ system libraries.
  • Installing R packages: Some older R packages that need extra help to compile.
  • Testing packages with ucrt64: Instructions for building and testing using the experimental UCRT toolchains.
  • FAQ: Common questions about Rtools40 and R on Windows.

Advanced information about building R base and building system libraries:

  • r-base: Scripts for building R for Windows using rtools4.
  • rtools-packages: Toolchains and static libraries for rtools4 (GCC 8+)
  • rtools-backports: Backported C/C++ libraries for the gcc-4.9.3 legacy toolchain (for R 3.3 - 3.6)
  • rtools-installer: Builds the rtools4 installer bundle.

Footnotes

  1. the ucrt64 toolchain in rtools4 uses the same version of mingw-w64, gcc, and additional patches as the cross-compiled MXE bundle from Tomas Kalibera (tentatively known as rtools42) and they are fully compatible.

About

Documentation for rtools40 and R for Windows

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •