Initial commit
This commit is contained in:
commit
6ff767b04e
25 changed files with 595 additions and 0 deletions
33
README.md
Normal file
33
README.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# [GraalVM](https://www.graalvm.org/) Native Executable Example for [b<span style="color:orange">l</span>d](https://rife2.com/bld)
|
||||
|
||||
Be sure to have the GraalVM `native-image` utility in your path, or set its location in the build file.
|
||||
|
||||
## Compile the application
|
||||
|
||||
```console
|
||||
./bld compile
|
||||
```
|
||||
## Create a Java archive
|
||||
|
||||
```console
|
||||
./bld jar
|
||||
```
|
||||
|
||||
## Create the native application
|
||||
|
||||
```console
|
||||
./bld native-exec
|
||||
```
|
||||
|
||||
## Combine the commands
|
||||
|
||||
```console
|
||||
./bld compile jar native-exec
|
||||
```
|
||||
|
||||
## Launch the application
|
||||
|
||||
```console
|
||||
./hello
|
||||
```
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue