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
Copy file name to clipboardExpand all lines: BUILDING.md
+18-4
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,20 @@ $ mvn clean install \
18
18
>>(tee mvn.log)2>>(tee mvn-error.log >&2)
19
19
```
20
20
21
-
You can use the supplied `Vagrantfile` to get a [Vagrant][4] VM ([Ubuntu][5] 14.04 LTS - Trusty Tahr, with [VirtualBox][6]) with all the required software installed.
21
+
Starting from version 6.1.0 **pdfHtml** supports native image compilation using [GraalVM][4]. Follow the instructions at
22
+
[Getting started](https://www.graalvm.org/latest/getting-started/) to build your first native application out of java sources.
23
+
24
+
To run tests in native mode [GraalVM][4] for JDK 22 or higher must be installed and native profile must be used as follows
25
+
```bash
26
+
$ mvn clean install -Pnative -DskipTests=false \
27
+
-Dmaven.test.failure.ignore=false \
28
+
-DgsExec=$(which gs) \
29
+
-DcompareExec=$(which compare) \
30
+
-Dmaven.javadoc.failOnError=false \
31
+
>>(tee mvn.log)2>>(tee mvn-error.log >&2)
32
+
```
33
+
34
+
You can use the supplied `Vagrantfile` to get a [Vagrant][5] VM ([Ubuntu][6] 14.04 LTS - Trusty Tahr, with [VirtualBox][7]) with all the required software installed.
0 commit comments