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
The output should be (x64). If you encounter any other issue, please let us know.
74
+
The output should be (x64). If you encounter any other issue, please let us know.
75
+
76
+
Using ScalaZ3
77
+
-------------
78
+
79
+
### On a single operating system / architecture
80
+
81
+
Create a folder named `unmanaged` at the same level as your `build.sbt` file, and copy the JAR file in `target/scala-2.XX/scalaz3_2.XX-3.0.jar` into it.
82
+
83
+
Then add, the following lines to your `build.sbt` file:
If you want to use ScalaZ3 in a project which must support various operating systems and architectures, you will have to compile ScalaZ3 on each of those systems/architectures, following the instructions above.
94
+
95
+
Make sure to name the resulting JAR files as `scalaz3-[osName]-[osArch]-[scalaBinaryVersion].jar`, where:
96
+
97
+
-`[osName]` is one of: `mac`, `win`, `unix`.
98
+
-`[osArch]` corresponds to `System.getProperty("sun.arch.data.model")`, ie. `x64`, `fds`, etc.
99
+
-`[scalaBinaryVersion]` is one of: `2.11`, `2.12`, `2.13`.
100
+
101
+
Create a folder named `unmanaged` at the same level as your `build.sbt` file, and copy the aforementioned JAR files into it.
0 commit comments