Skip to content

Commit

Permalink
R 4.3 'true' support (fix Rserve 1.8-10 segfault)
Browse files Browse the repository at this point in the history
  • Loading branch information
yannrichet committed Aug 30, 2023
1 parent db3f077 commit b648b11
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/math/R/StartRserve.java
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@ public static boolean installBundledRserve(String Rcmd) throws InterruptedExcept
R_version_path = "R-4.2";
Rserve_version = "1.8-10";
} else if (outv_str.startsWith("4.3")) {
R_version_path = "R-4.2";
Rserve_version = "1.8-10";
R_version_path = "R-4.3";
Rserve_version = "1.8-11";
} else Log.Err.println("R version ('"+outv_str+"') not supported.\n Will try to use source install."+ (isWindows()?" (assuming Rtools is available)":""));
} catch (Exception ex) {
Log.Err.println(ex.getMessage()+": \n"+outv_str);
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit b648b11

Please sign in to comment.