https://github.com/eginez/native-image-examples
native image examples
https://github.com/eginez/native-image-examples
Last synced: 3 months ago
JSON representation
native image examples
- Host: GitHub
- URL: https://github.com/eginez/native-image-examples
- Owner: eginez
- License: epl-2.0
- Created: 2019-12-04T22:06:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-04T18:08:53.000Z (about 5 years ago)
- Last Synced: 2025-01-23T06:45:45.232Z (5 months ago)
- Size: 77.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# naitve-image-examples
Repository containing a few native image examples# Pre-reqs
- GraalVM's native image
- Gradle# Build and Run
- ./gradlew assembleTo build the rmi example
```bash
>./gradlew rmi:run
>./gradlew rmi:nativei
```To run the rest of the examples: Execute a gradle `runnative+[JavaFileName]`. For example
```bash
> ./gradlew runnative-examples.StaticInit
or
> ./gradlew runnative-examples.ProofOfWork -Pdebug #enables --debug--attach
```