From 0ab4aa4e885211c95b26a99ce1f2cb27de6be4fa Mon Sep 17 00:00:00 2001 From: kalibera Date: Sat, 14 Sep 2024 11:41:20 +0000 Subject: [PATCH] Remove old check for 32-bit Windows systems (which are no longer supported, check causing error with cross-compilation). git-svn-id: https://svn.r-project.org/R/trunk@87148 00db46b3-68df-0310-9c12-caf00c1e9a41 --- src/library/tools/R/install.R | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/library/tools/R/install.R b/src/library/tools/R/install.R index ed875486ce..8abb0e97c1 100644 --- a/src/library/tools/R/install.R +++ b/src/library/tools/R/install.R @@ -1468,11 +1468,11 @@ if(FALSE) { setwd(wd2) } } - if (WINDOWS && "x64" %in% test_archs) { - ## we cannot actually test x64 unless this is 64-bit - ## Windows, even if it is installed. - if (!grepl(" x64 ", utils::win.version())) test_archs <- "i386" - } + # if (WINDOWS && "x64" %in% test_archs) { + # ## we cannot actually test x64 unless this is 64-bit + # ## Windows, even if it is installed. + # if (!grepl(" x64 ", utils::win.version())) test_archs <- "i386" + #} if (have_cross) Sys.unsetenv("R_ARCH")