Skip to content

Commit 4527dc6

Browse files
committedNov 17, 2022
8297041: Remove the last remnants of sjavac
Reviewed-by: cstein, erikj, jjg
1 parent 636040f commit 4527dc6

File tree

112 files changed

+706
-11207
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+706
-11207
lines changed
 

‎doc/building.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ <h1 class="title">Building the JDK</h1>
9090
<li><a href="#ccache">Ccache</a></li>
9191
<li><a href="#precompiled-headers">Precompiled Headers</a></li>
9292
<li><a href="#icecc-icecream">Icecc / icecream</a></li>
93-
<li><a href="#using-sjavac">Using sjavac</a></li>
93+
<li><a href="#using-the-javac-server">Using the javac server</a></li>
9494
<li><a href="#building-the-right-target">Building the Right Target</a></li>
9595
</ul></li>
9696
<li><a href="#troubleshooting">Troubleshooting</a><ul>
@@ -819,8 +819,8 @@ <h3 id="precompiled-headers">Precompiled Headers</h3>
819819
<h3 id="icecc-icecream">Icecc / icecream</h3>
820820
<p><a href="http://github.com/icecc/icecream">icecc/icecream</a> is a simple way to setup a distributed compiler network. If you have multiple machines available for building the JDK, you can drastically cut individual build times by utilizing it.</p>
821821
<p>To use, setup an icecc network, and install icecc on the build machine. Then run <code>configure</code> using <code>--enable-icecc</code>.</p>
822-
<h3 id="using-sjavac">Using sjavac</h3>
823-
<p>To speed up compilation of Java code, especially during incremental compilations, the sjavac server is automatically enabled in the configuration step by default. To explicitly enable or disable sjavac, use either <code>--enable-javac-server</code> or <code>--disable-javac-server</code>.</p>
822+
<h3 id="using-the-javac-server">Using the javac server</h3>
823+
<p>To speed up compilation of Java code, especially during incremental compilations, the javac server is automatically enabled in the configuration step by default. To explicitly enable or disable the javac server, use either <code>--enable-javac-server</code> or <code>--disable-javac-server</code>.</p>
824824
<h3 id="building-the-right-target">Building the Right Target</h3>
825825
<p>Selecting the proper target to build can have dramatic impact on build time. For normal usage, <code>jdk</code> or the default target is just fine. You only need to build <code>images</code> for shipping, or if your tests require it.</p>
826826
<p>See also <a href="#using-fine-grained-make-targets">Using Fine-Grained Make Targets</a> on how to build an even smaller subset of the product.</p>

‎doc/building.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1333,12 +1333,12 @@ it.
13331333
To use, setup an icecc network, and install icecc on the build machine. Then
13341334
run `configure` using `--enable-icecc`.
13351335
1336-
### Using sjavac
1336+
### Using the javac server
13371337
1338-
To speed up compilation of Java code, especially during incremental compilations,
1339-
the sjavac server is automatically enabled in the configuration step by default.
1340-
To explicitly enable or disable sjavac, use either `--enable-javac-server`
1341-
or `--disable-javac-server`.
1338+
To speed up compilation of Java code, especially during incremental
1339+
compilations, the javac server is automatically enabled in the configuration
1340+
step by default. To explicitly enable or disable the javac server, use either
1341+
`--enable-javac-server` or `--disable-javac-server`.
13421342
13431343
### Building the Right Target
13441344

0 commit comments

Comments
 (0)
Please sign in to comment.