Skip to content

Commit

Permalink
Update website
Browse files Browse the repository at this point in the history
  • Loading branch information
Web Publisher committed Jun 4, 2024
1 parent d063080 commit 720f59d
Show file tree
Hide file tree
Showing 12 changed files with 540 additions and 192 deletions.
2 changes: 1 addition & 1 deletion dev/reference-manual/ruby/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

</title>
<meta name="description" content="GraalVM is an advanced JDK with ahead-of-time Native Image compilation."/>
<meta name="last_modified" content="2024-06-04 08:52:44 +0000"/>
<meta name="last_modified" content="2024-06-04 09:32:29 +0000"/>


<link rel="canonical" href="https://www.graalvm.org/latest/reference-manual/ruby/">
Expand Down
4 changes: 2 additions & 2 deletions docs/search/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion jdk17/reference-manual/ruby/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

</title>
<meta name="description" content="GraalVM is an advanced JDK with ahead-of-time Native Image compilation."/>
<meta name="last_modified" content="2024-06-04 08:51:24 +0000"/>
<meta name="last_modified" content="2024-06-04 09:30:25 +0000"/>


<link rel="canonical" href="https://www.graalvm.org/latest/reference-manual/ruby/">
Expand Down
2 changes: 1 addition & 1 deletion jdk21/reference-manual/ruby/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

</title>
<meta name="description" content="GraalVM is an advanced JDK with ahead-of-time Native Image compilation."/>
<meta name="last_modified" content="2024-06-04 08:50:10 +0000"/>
<meta name="last_modified" content="2024-06-04 09:28:37 +0000"/>


<link rel="canonical" href="https://www.graalvm.org/latest/reference-manual/ruby/">
Expand Down
265 changes: 191 additions & 74 deletions jdk22/reference-manual/native-image/index.html

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

</title>
<meta name="description" content="GraalVM is an advanced JDK with ahead-of-time Native Image compilation."/>
<meta name="last_modified" content="2024-01-23 16:09:55 +0000"/>
<meta name="last_modified" content="2024-05-21 11:01:15 +0000"/>


<link rel="canonical" href="https://www.graalvm.org/jdk22/reference-manual/native-image/overview/Build-Overview/">
Expand Down Expand Up @@ -581,6 +581,63 @@ <h1 id="native-image-build-overview">
<p>The options passed to <code>native-image</code> are evaluated from left to right.
For an overview of options that can be passed to <code>native-image</code>, see <a href="/jdk22/reference-manual/native-image/overview/Options/">here</a>.</p>

<h2 id="getting-notified-when-the-build-process-is-done">


Getting Notified When the Build Process Is Done <a href="#getting-notified-when-the-build-process-is-done" class="anchor_heading">#</a>


</h2>

<p>Depending on the size of your application and the available resources of your build machine, it can take a few minutes to compile your Java application into a native executable.
If you are building your application in the background, consider using a command that notifies you when the build process is completed.
Below, example commands are listed per operating system:</p>

<h4 id="linux">


Linux


</h4>
<pre><code class="language-bash"># Ring the terminal bell
native-image -jar App.jar ... ; printf '\a'

# Use libnotify to create a desktop notification
native-image -jar App.jar ... ; notify-send "GraalVM Native Image build completed with exit code $?"

# Use Zenity to open an info dialog box with text
native-image -jar App.jar ... ; zenity --info --text="GraalVM Native Image build completed with exit code $?"
</code></pre>

<h4 id="macos">


macOS


</h4>
<pre><code class="language-bash"># Ring the terminal bell
native-image -jar App.jar ... ; printf '\a'

# Use Speech Synthesis
native-image -jar App.jar ... ; say "GraalVM Native Image build completed"
</code></pre>

<h4 id="windows">


Windows


</h4>
<pre><code class="language-bash"># Ring the terminal bell (press Ctrl+G to enter ^G)
native-image.exe -jar App.jar &amp; echo ^G

# Open an info dialog box with text
native-image.exe -jar App.jar &amp; msg "%username%" GraalVM Native Image build completed
</code></pre>

<h3 id="further-reading">


Expand Down
2 changes: 1 addition & 1 deletion jdk22/reference-manual/ruby/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

</title>
<meta name="description" content="GraalVM is an advanced JDK with ahead-of-time Native Image compilation."/>
<meta name="last_modified" content="2024-06-04 08:47:40 +0000"/>
<meta name="last_modified" content="2024-06-04 09:24:28 +0000"/>


<link rel="canonical" href="https://www.graalvm.org/jdk22/reference-manual/ruby/">
Expand Down
2 changes: 1 addition & 1 deletion jdk23/reference-manual/ruby/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

</title>
<meta name="description" content="GraalVM is an advanced JDK with ahead-of-time Native Image compilation."/>
<meta name="last_modified" content="2024-06-04 08:52:44 +0000"/>
<meta name="last_modified" content="2024-06-04 09:32:29 +0000"/>


<link rel="canonical" href="https://www.graalvm.org/latest/reference-manual/ruby/">
Expand Down
Loading

0 comments on commit 720f59d

Please sign in to comment.