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 ddca70e commit bfbf0acCopy full SHA for bfbf0ac
README.md
@@ -16,6 +16,15 @@ pid name heap ram cpu
16
17
```
18
19
+# Build
20
+
21
+Make sure to have the latest graalvm native-image tool:
22
23
+```bash
24
+$ lein uberjar
25
+$ native-image -jar target/jps-stat-0.1.0-standalone.jar --no-fallback --report-unsupported-elements-at-runtime --initialize-at-build-time --allow-incomplete-classpath
26
+```
27
28
# Copyright and license
29
30
Copyright [2020] [Ronen Narkis]
project.clj
@@ -6,5 +6,7 @@
6
[rm-hull/table "0.7.0"]
7
[org.clojure/clojure "1.10.1"]]
8
:repl-options {:init-ns jps-stat.jpscore}
9
+ ; supporting graalvm --no-fallback
10
+ :jvm-opts ["-Dclojure.compiler.direct-linking=true"]
11
:main jps-stat.jpscore
12
:aot [jps-stat.jpscore])
0 commit comments