We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29d388a commit 9c7603eCopy full SHA for 9c7603e
1 file changed
R/utils.R
@@ -92,11 +92,8 @@ arch_is_aarch64 <- function() {
92
}
93
94
# Returns the type of make command to use to compile depending on the OS
95
-# First checks if $MAKE is set, otherwise falls back to system-specific default
96
make_cmd <- function() {
97
- if (Sys.getenv("MAKE") != "") {
98
- Sys.getenv("MAKE")
99
- } else if ((cmdstan_version() < "2.35.0") && os_is_windows() && !os_is_wsl() &&
+ if ((cmdstan_version() < "2.35.0") && os_is_windows() && !os_is_wsl() &&
100
(Sys.getenv("CMDSTANR_USE_RTOOLS") == "")) {
101
"mingw32-make.exe"
102
} else {
0 commit comments