r-debug
r-debug copied to clipboard
Dockerfile with several builds of R for memory/thread debugging
This PR adds files to build R-devel as a Nix flake. Some notes: - The Recommended package filenames and hashes need to be updated manually. Because CRAN continually updates the...
CRAN has started using the intel compilers in its checks now that it is available free of cost. Would be nice to have an RD build with the intel compilers.
I'm struggling to run the images (or R, for that matter) on my M2 in a virtual machine using Rosetta. I'm experimenting with arm64 images in https://github.com/cynkra/r-debug. These Dockerfiles have...
Taken from https://github.com/rstudio/shiny/issues/3502#issuecomment-953318300 We're ready to rename `master` to `main` here (and elsewhere)! This blog post announces the larger effort and explains how contributors can update their local environments: [Renaming...
In a project I maintain, we have been using https://hub.docker.com/layers/wch1/r-debug/ for a while now to run various continuous integration jobs trying to replicate the types of testing CRAN does. Thanks...
This may be related to #24 or #15 . This is the same issue as also reported in coatless-rpkg/sitmo#14 I'm trying to test a different package with RDsan, and I...
In the latest build of this image, I am experiencing this error when installing some C++ packages through ` CMD INSTALL package.tar.gz`: ``` Error: package or namespace load failed for...
I'm guessing this is happening due to a combination of documented difficulties in building R with the GCC UB sanitizer, and the problems caused by ~/.R/Makevars affecting all builds, but...
According to https://svn.r-project.org/R-dev-web/trunk/CRAN/QA/BDR/gannet/R-clang-SAN/config.site this is CRAN's current config for the clang-asan build: ``` CC="clang -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer" OBJC=clang CXX="clang++ -fsanitize=address,undefined -fno-sanitize=float-divide-by-zero -fno-sanitize=alignment -fno-omit-frame-pointer -frtti" FC=gfortran CFLAGS="-g -O3 -Wall -pedantic"...
I've got an LTO failure on CRAN, and I'm not aware of any other docker image or CI service that has an R build with `--enable-lto` like https://www.stats.ox.ac.uk/pub/bdr/LTO/README.txt. Since r-debug...