Skip to content

Commit

Permalink
Remove old check for 32-bit Windows systems (which are no longer supp…
Browse files Browse the repository at this point in the history
…orted,

check causing error with cross-compilation).


git-svn-id: https://svn.r-project.org/R/trunk@87148 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
kalibera committed Sep 14, 2024
1 parent 9f1a1c0 commit 0ab4aa4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/library/tools/R/install.R
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit 0ab4aa4

Please sign in to comment.