You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS name: "linux", version: "5.4.0-37-generic", arch: "amd64", family: "unix"
90
+
OS name: "linux", version: "6.8.0-59-generic", arch: "amd64", family: "unix"
91
91
```
92
92
93
93
#### Testing
@@ -120,9 +120,8 @@ Prerequisite install homebrew on the device.
120
120
```bash
121
121
# To allow relative paths:
122
122
brew install coreutils
123
-
# To install open jdk 11.
124
-
brew tap adoptopenjdk/openjdk
125
-
brew cask install adoptopenjdk11
123
+
# To install open jdk 17.
124
+
brew install openjdk@17
126
125
# Install maven to enable compilation of SystemDS.
127
126
brew install maven
128
127
```
@@ -136,10 +135,10 @@ mvn --version
136
135
137
136
This should print java version.
138
137
139
-
Note that if you have multiple __java__ versions installed then you have to change the used version to 11, on __both java and javadoc__. This is done by setting the environment variable JAVA_HOME to the install path of open JDK 11 :
138
+
Note that if you have multiple __java__ versions installed then you have to change the used version to 17, on __both java and javadoc__. This is done by setting the environment variable JAVA_HOME to the install path of open JDK 17 :
140
139
141
140
```bash
142
-
export JAVA_HOME=`/usr/libexec/java_home -v 11`
141
+
export JAVA_HOME=`/usr/libexec/java_home -v 17`
143
142
```
144
143
145
144
For running all tests [r-base](https://cran.r-project.org/bin/macosx/) has to be installed as well since this is used as a secondary system to verify the correctness of our code, but it is not a requirement to enable building the project.
0 commit comments