Skip to content

Commit ba097ca

Browse files
committedAug 23, 2021
8251549: Update docs on building for Git
Reviewed-by: shade, clanger Backport-of: 042734c
1 parent 3a88ae7 commit ba097ca

File tree

2 files changed

+73
-130
lines changed

2 files changed

+73
-130
lines changed
 

‎doc/building.html

+38-63
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,10 @@ <h1 class="title">Building the JDK</h1>
9393
<li><a href="#getting-help">Getting Help</a></li>
9494
</ul></li>
9595
<li><a href="#hints-and-suggestions-for-advanced-users">Hints and Suggestions for Advanced Users</a><ul>
96-
<li><a href="#setting-up-a-forest-for-pushing-changes-defpath">Setting Up a Forest for Pushing Changes (defpath)</a></li>
9796
<li><a href="#bash-completion">Bash Completion</a></li>
9897
<li><a href="#using-multiple-configurations">Using Multiple Configurations</a></li>
9998
<li><a href="#handling-reconfigurations">Handling Reconfigurations</a></li>
10099
<li><a href="#using-fine-grained-make-targets">Using Fine-Grained Make Targets</a></li>
101-
<li><a href="#learn-about-mercurial">Learn About Mercurial</a></li>
102100
</ul></li>
103101
<li><a href="#understanding-the-build-system">Understanding the Build System</a><ul>
104102
<li><a href="#configurations">Configurations</a></li>
@@ -112,10 +110,10 @@ <h1 class="title">Building the JDK</h1>
112110
</ul>
113111
</nav>
114112
<h2 id="tldr-instructions-for-the-impatient">TL;DR (Instructions for the Impatient)</h2>
115-
<p>If you are eager to try out building the JDK, these simple steps works most of the time. They assume that you have installed Mercurial (and Cygwin if running on Windows) and cloned the top-level JDK repository that you want to build.</p>
113+
<p>If you are eager to try out building the JDK, these simple steps works most of the time. They assume that you have installed Git (and Cygwin if running on Windows) and cloned the top-level JDK repository that you want to build.</p>
116114
<ol type="1">
117115
<li><p><a href="#getting-the-source-code">Get the complete source code</a>:<br />
118-
<code>hg clone http://hg.openjdk.java.net/jdk/jdk</code></p></li>
116+
<code>git clone https://git.openjdk.java.net/jdk/</code></p></li>
119117
<li><p><a href="#running-configure">Run configure</a>:<br />
120118
<code>bash configure</code></p>
121119
<p>If <code>configure</code> fails due to missing dependencies (to either the <a href="#native-compiler-toolchain-requirements">toolchain</a>, <a href="#build-tools-requirements">build tools</a>, <a href="#external-library-requirements">external libraries</a> or the <a href="#boot-jdk-requirements">boot JDK</a>), most of the time it prints a suggestion on how to resolve the situation on your platform. Follow the instructions, and try running <code>bash configure</code> again.</p></li>
@@ -131,8 +129,8 @@ <h2 id="introduction">Introduction</h2>
131129
<p>The JDK is a complex software project. Building it requires a certain amount of technical expertise, a fair number of dependencies on external software, and reasonably powerful hardware.</p>
132130
<p>If you just want to use the JDK and not build it yourself, this document is not for you. See for instance <a href="http://openjdk.java.net/install">OpenJDK installation</a> for some methods of installing a prebuilt JDK.</p>
133131
<h2 id="getting-the-source-code">Getting the Source Code</h2>
134-
<p>Make sure you are getting the correct version. As of JDK 10, the source is no longer split into separate repositories so you only need to clone one single repository. At the <a href="http://hg.openjdk.java.net/">OpenJDK Mercurial server</a> you can see a list of all available forests. If you want to build an older version, e.g. JDK 8, it is recommended that you get the <code>jdk8u</code> forest, which contains incremental updates, instead of the <code>jdk8</code> forest, which was frozen at JDK 8 GA.</p>
135-
<p>If you are new to Mercurial, a good place to start is the <a href="http://www.mercurial-scm.org/guide">Mercurial Beginner's Guide</a>. The rest of this document assumes a working knowledge of Mercurial.</p>
132+
<p>Make sure you are getting the correct version. As of JDK 10, the source is no longer split into separate repositories so you only need to clone one single repository. At the <a href="https://git.openjdk.java.net/">OpenJDK Git site</a> you can see a list of all available repositories. If you want to build an older version, e.g. JDK 8, it is recommended that you get the <code>jdk8u</code> forest, which contains incremental updates, instead of the <code>jdk8</code> forest, which was frozen at JDK 8 GA.</p>
133+
<p>If you are new to Git, a good place to start is the book <a href="https://git-scm.com/book/en/v2">Pro Git</a>. The rest of this document assumes a working knowledge of Git.</p>
136134
<h3 id="special-considerations">Special Considerations</h3>
137135
<p>For a smooth building experience, it is recommended that you follow these rules on where and how to check out the source code.</p>
138136
<ul>
@@ -143,7 +141,11 @@ <h3 id="special-considerations">Special Considerations</h3>
143141
<ul>
144142
<li><p>Create the directory that is going to contain the top directory of the JDK clone by using the <code>mkdir</code> command in the Cygwin bash shell. That is, do <em>not</em> create it using Windows Explorer. This will ensure that it will have proper Cygwin attributes, and that it's children will inherit those attributes.</p></li>
145143
<li><p>Do not put the JDK clone in a path under your Cygwin home directory. This is especially important if your user name contains spaces and/or mixed upper and lower case letters.</p></li>
146-
<li><p>Clone the JDK repository using the Cygwin command line <code>hg</code> client as instructed in this document. That is, do <em>not</em> use another Mercurial client such as TortoiseHg.</p></li>
144+
<li><p>You need to install a git client. You have two choices, Cygwin git or Git for Windows. Unfortunately there are pros and cons with each choice.</p>
145+
<ul>
146+
<li><p>The Cygwin <code>git</code> client has no line ending issues and understands Cygwin paths (which are used throughout the JDK build system). However, it does not currently work well with the Skara CLI tooling. Please see the <a href="https://wiki.openjdk.java.net/display/SKARA/Skara#Skara-Git">Skara wiki on Git clients</a> for up-to-date information about the Skara git client support.</p></li>
147+
<li><p>The <a href="https://gitforwindows.org">Git for Windows</a> client has issues with line endings, and do not understand Cygwin paths. It does work well with the Skara CLI tooling, however. To alleviate the line ending problems, make sure you set <code>core.autocrlf</code> to <code>false</code> (this is asked during installation).</p></li>
148+
</ul></li>
147149
</ul>
148150
<p>Failure to follow this procedure might result in hard-to-debug build problems.</p></li>
149151
</ul>
@@ -193,7 +195,7 @@ <h3 id="windows">Windows</h3>
193195
<p>Windows XP is not a supported platform, but all newer Windows should be able to build the JDK.</p>
194196
<p>On Windows, it is important that you pay attention to the instructions in the <a href="#special-considerations">Special Considerations</a>.</p>
195197
<p>Windows is the only non-POSIX OS supported by the JDK, and as such, requires some extra care. A POSIX support layer is required to build on Windows. Currently, the only supported such layer is Cygwin. (Msys is no longer supported due to a too old bash; msys2 and the new Windows Subsystem for Linux (WSL) would likely be possible to support in a future version but that would require effort to implement.)</p>
196-
<p>Internally in the build system, all paths are represented as Unix-style paths, e.g. <code>/cygdrive/c/hg/jdk9/Makefile</code> rather than <code>C:\hg\jdk9\Makefile</code>. This rule also applies to input to the build system, e.g. in arguments to <code>configure</code>. So, use <code>--with-msvcr-dll=/cygdrive/c/msvcr100.dll</code> rather than <code>--with-msvcr-dll=c:\msvcr100.dll</code>. For details on this conversion, see the section on <a href="#fixpath">Fixpath</a>.</p>
198+
<p>Internally in the build system, all paths are represented as Unix-style paths, e.g. <code>/cygdrive/c/git/jdk/Makefile</code> rather than <code>C:\git\jdk\Makefile</code>. This rule also applies to input to the build system, e.g. in arguments to <code>configure</code>. So, use <code>--with-msvcr-dll=/cygdrive/c/msvcr100.dll</code> rather than <code>--with-msvcr-dll=c:\msvcr100.dll</code>. For details on this conversion, see the section on <a href="#fixpath">Fixpath</a>.</p>
197199
<h4 id="cygwin">Cygwin</h4>
198200
<p>A functioning <a href="http://www.cygwin.com/">Cygwin</a> environment is thus required for building the JDK on Windows. If you have a 64-bit OS, we strongly recommend using the 64-bit version of Cygwin.</p>
199201
<p><strong>Note:</strong> Cygwin has a model of continuously updating all packages without any easy way to install or revert to a specific version of a package. This means that whenever you add or update a package in Cygwin, you might (inadvertently) update tools that are used by the JDK build process, and that can cause unexpected build problems.</p>
@@ -577,27 +579,27 @@ <h3 id="cross-compiling-the-easy-way-with-openjdk-devkits">Cross compiling the e
577579
<table>
578580
<thead>
579581
<tr class="header">
580-
<th style="text-align: left;">Supported devkit targets</th>
582+
<th>Supported devkit targets</th>
581583
</tr>
582584
</thead>
583585
<tbody>
584586
<tr class="odd">
585-
<td style="text-align: left;">x86_64-linux-gnu</td>
587+
<td>x86_64-linux-gnu</td>
586588
</tr>
587589
<tr class="even">
588-
<td style="text-align: left;">aarch64-linux-gnu</td>
590+
<td>aarch64-linux-gnu</td>
589591
</tr>
590592
<tr class="odd">
591-
<td style="text-align: left;">arm-linux-gnueabihf</td>
593+
<td>arm-linux-gnueabihf</td>
592594
</tr>
593595
<tr class="even">
594-
<td style="text-align: left;">ppc64-linux-gnu</td>
596+
<td>ppc64-linux-gnu</td>
595597
</tr>
596598
<tr class="odd">
597-
<td style="text-align: left;">ppc64le-linux-gnu</td>
599+
<td>ppc64le-linux-gnu</td>
598600
</tr>
599601
<tr class="even">
600-
<td style="text-align: left;">s390x-linux-gnu</td>
602+
<td>s390x-linux-gnu</td>
601603
</tr>
602604
</tbody>
603605
</table>
@@ -700,45 +702,45 @@ <h3 id="creating-and-using-sysroots-with-qemu-deboostrap">Creating And Using Sys
700702
<th style="text-align: left;">Target</th>
701703
<th style="text-align: left;"><code>CC</code></th>
702704
<th style="text-align: left;"><code>CXX</code></th>
703-
<th style="text-align: left;"><code>--arch=...</code></th>
704-
<th style="text-align: left;"><code>--openjdk-target=...</code></th>
705+
<th><code>--arch=...</code></th>
706+
<th><code>--openjdk-target=...</code></th>
705707
</tr>
706708
</thead>
707709
<tbody>
708710
<tr class="odd">
709711
<td style="text-align: left;">x86</td>
710712
<td style="text-align: left;">default</td>
711713
<td style="text-align: left;">default</td>
712-
<td style="text-align: left;">i386</td>
713-
<td style="text-align: left;">i386-linux-gnu</td>
714+
<td>i386</td>
715+
<td>i386-linux-gnu</td>
714716
</tr>
715717
<tr class="even">
716718
<td style="text-align: left;">armhf</td>
717719
<td style="text-align: left;">gcc-arm-linux-gnueabihf</td>
718720
<td style="text-align: left;">g++-arm-linux-gnueabihf</td>
719-
<td style="text-align: left;">armhf</td>
720-
<td style="text-align: left;">arm-linux-gnueabihf</td>
721+
<td>armhf</td>
722+
<td>arm-linux-gnueabihf</td>
721723
</tr>
722724
<tr class="odd">
723725
<td style="text-align: left;">aarch64</td>
724726
<td style="text-align: left;">gcc-aarch64-linux-gnu</td>
725727
<td style="text-align: left;">g++-aarch64-linux-gnu</td>
726-
<td style="text-align: left;">arm64</td>
727-
<td style="text-align: left;">aarch64-linux-gnu</td>
728+
<td>arm64</td>
729+
<td>aarch64-linux-gnu</td>
728730
</tr>
729731
<tr class="even">
730732
<td style="text-align: left;">ppc64el</td>
731733
<td style="text-align: left;">gcc-powerpc64le-linux-gnu</td>
732734
<td style="text-align: left;">g++-powerpc64le-linux-gnu</td>
733-
<td style="text-align: left;">ppc64el</td>
734-
<td style="text-align: left;">powerpc64le-linux-gnu</td>
735+
<td>ppc64el</td>
736+
<td>powerpc64le-linux-gnu</td>
735737
</tr>
736738
<tr class="odd">
737739
<td style="text-align: left;">s390x</td>
738740
<td style="text-align: left;">gcc-s390x-linux-gnu</td>
739741
<td style="text-align: left;">g++-s390x-linux-gnu</td>
740-
<td style="text-align: left;">s390x</td>
741-
<td style="text-align: left;">s390x-linux-gnu</td>
742+
<td>s390x</td>
743+
<td>s390x-linux-gnu</td>
742744
</tr>
743745
</tbody>
744746
</table>
@@ -789,14 +791,14 @@ <h4 id="build-failure-summary">Build Failure Summary</h4>
789791

790792
=== Output from failing command(s) repeated here ===
791793
* For target hotspot_variant-server_libjvm_objs_psMemoryPool.o:
792-
/localhome/hg/jdk9-sandbox/hotspot/src/share/vm/services/psMemoryPool.cpp:1:1: error: &#39;failhere&#39; does not name a type
794+
/localhome/git/jdk-sandbox/hotspot/src/share/vm/services/psMemoryPool.cpp:1:1: error: &#39;failhere&#39; does not name a type
793795
... (rest of output omitted)
794796

795-
* All command lines available in /localhome/hg/jdk9-sandbox/build/linux-x64/make-support/failure-logs.
797+
* All command lines available in /localhome/git/jdk-sandbox/build/linux-x64/make-support/failure-logs.
796798
=== End of repeated output ===
797799

798800
=== Make failed targets repeated here ===
799-
lib/CompileJvm.gmk:207: recipe for target &#39;/localhome/hg/jdk9-sandbox/build/linux-x64/hotspot/variant-server/libjvm/objs/psMemoryPool.o&#39; failed
801+
lib/CompileJvm.gmk:207: recipe for target &#39;/localhome/git/jdk-sandbox/build/linux-x64/hotspot/variant-server/libjvm/objs/psMemoryPool.o&#39; failed
800802
make/Main.gmk:263: recipe for target &#39;hotspot-server-libs&#39; failed
801803
=== End of repeated output ===
802804

@@ -819,11 +821,11 @@ <h4 id="problems-with-the-build-environment">Problems with the Build Environment
819821
<p>Verify that the summary at the end looks correct. Are you indeed using the Boot JDK and native toolchain that you expect?</p>
820822
<p>By default, the JDK has a strict approach where warnings from the compiler is considered errors which fail the build. For very new or very old compiler versions, this can trigger new classes of warnings, which thus fails the build. Run <code>configure</code> with <code>--disable-warnings-as-errors</code> to turn of this behavior. (The warnings will still show, but not make the build fail.)</p>
821823
<h4 id="problems-with-incremental-rebuilds">Problems with Incremental Rebuilds</h4>
822-
<p>Incremental rebuilds mean that when you modify part of the product, only the affected parts get rebuilt. While this works great in most cases, and significantly speed up the development process, from time to time complex interdependencies will result in an incorrect build result. This is the most common cause for unexpected build problems, together with inconsistencies between the different Mercurial repositories in the forest.</p>
824+
<p>Incremental rebuilds mean that when you modify part of the product, only the affected parts get rebuilt. While this works great in most cases, and significantly speed up the development process, from time to time complex interdependencies will result in an incorrect build result. This is the most common cause for unexpected build problems.</p>
823825
<p>Here are a suggested list of things to try if you are having unexpected build problems. Each step requires more time than the one before, so try them in order. Most issues will be solved at step 1 or 2.</p>
824826
<ol type="1">
825-
<li><p>Make sure your forest is up-to-date</p>
826-
<p>Run <code>bash get_source.sh</code> to make sure you have the latest version of all repositories.</p></li>
827+
<li><p>Make sure your repository is up-to-date</p>
828+
<p>Run <code>git pull origin master</code> to make sure you have the latest changes.</p></li>
827829
<li><p>Clean build results</p>
828830
<p>The simplest way to fix incremental rebuild issues is to run <code>make clean</code>. This will remove all build results, but not the configuration or any build system support artifacts. In most cases, this will solve build errors resulting from incremental build mismatches.</p></li>
829831
<li><p>Completely clean the build directory.</p>
@@ -832,8 +834,8 @@ <h4 id="problems-with-incremental-rebuilds">Problems with Incremental Rebuilds</
832834
make dist-clean
833835
bash configure $(cat current-configuration)
834836
make</code></pre></li>
835-
<li><p>Re-clone the Mercurial forest</p>
836-
<p>Sometimes the Mercurial repositories themselves gets in a state that causes the product to be un-buildable. In such a case, the simplest solution is often the &quot;sledgehammer approach&quot;: delete the entire forest, and re-clone it. If you have local changes, save them first to a different location using <code>hg export</code>.</p></li>
837+
<li><p>Re-clone the Git repository</p>
838+
<p>Sometimes the Git repository gets in a state that causes the product to be un-buildable. In such a case, the simplest solution is often the &quot;sledgehammer approach&quot;: delete the entire repository, and re-clone it. If you have local changes, save them first to a different location using <code>git format-patch</code>.</p></li>
837839
</ol>
838840
<h3 id="specific-build-issues">Specific Build Issues</h3>
839841
<h4 id="clock-skew">Clock Skew</h4>
@@ -852,28 +854,9 @@ <h4 id="out-of-memory-errors">Out of Memory Errors</h4>
852854
spawn failed</code></pre>
853855
<p>This can be a sign of a Cygwin problem. See the information about solving problems in the <a href="#cygwin">Cygwin</a> section. Rebooting the computer might help temporarily.</p>
854856
<h3 id="getting-help">Getting Help</h3>
855-
<p>If none of the suggestions in this document helps you, or if you find what you believe is a bug in the build system, please contact the Build Group by sending a mail to <script type="text/javascript">
856-
<!--
857-
h='&#x6f;&#112;&#x65;&#110;&#106;&#100;&#x6b;&#46;&#106;&#x61;&#118;&#x61;&#46;&#110;&#x65;&#116;';a='&#64;';n='&#98;&#x75;&#x69;&#108;&#100;&#x2d;&#100;&#x65;&#118;';e=n+a+h;
858-
document.write('<a h'+'ref'+'="ma'+'ilto'+':'+e+'" clas'+'s="em' + 'ail">'+e+'<\/'+'a'+'>');
859-
// -->
860-
</script><noscript>&#98;&#x75;&#x69;&#108;&#100;&#x2d;&#100;&#x65;&#118;&#32;&#x61;&#116;&#32;&#x6f;&#112;&#x65;&#110;&#106;&#100;&#x6b;&#32;&#100;&#x6f;&#116;&#32;&#106;&#x61;&#118;&#x61;&#32;&#100;&#x6f;&#116;&#32;&#110;&#x65;&#116;</noscript>. Please include the relevant parts of the configure and/or build log.</p>
857+
<p>If none of the suggestions in this document helps you, or if you find what you believe is a bug in the build system, please contact the Build Group by sending a mail to <a href="mailto:build-dev@openjdk.java.net">build-dev@openjdk.java.net</a>. Please include the relevant parts of the configure and/or build log.</p>
861858
<p>If you need general help or advice about developing for the JDK, you can also contact the Adoption Group. See the section on <a href="#contributing-to-openjdk">Contributing to OpenJDK</a> for more information.</p>
862859
<h2 id="hints-and-suggestions-for-advanced-users">Hints and Suggestions for Advanced Users</h2>
863-
<h3 id="setting-up-a-forest-for-pushing-changes-defpath">Setting Up a Forest for Pushing Changes (defpath)</h3>
864-
<p>To help you prepare a proper push path for a Mercurial repository, there exists a useful tool known as <a href="http://openjdk.java.net/projects/code-tools/defpath">defpath</a>. It will help you setup a proper push path for pushing changes to the JDK.</p>
865-
<p>Install the extension by cloning <code>http://hg.openjdk.java.net/code-tools/defpath</code> and updating your <code>.hgrc</code> file. Here's one way to do this:</p>
866-
<pre><code>cd ~
867-
mkdir hg-ext
868-
cd hg-ext
869-
hg clone http://hg.openjdk.java.net/code-tools/defpath
870-
cat &lt;&lt; EOT &gt;&gt; ~/.hgrc
871-
[extensions]
872-
defpath=~/hg-ext/defpath/defpath.py
873-
EOT</code></pre>
874-
<p>You can now setup a proper push path using:</p>
875-
<pre><code>hg defpath -d -u &lt;your OpenJDK username&gt;</code></pre>
876-
<p>If you also have the <code>trees</code> extension installed in Mercurial, you will automatically get a <code>tdefpath</code> command, which is even more useful. By running <code>hg tdefpath -du &lt;username&gt;</code> in the top repository of your forest, all repos will get setup automatically. This is the recommended usage.</p>
877860
<h3 id="bash-completion">Bash Completion</h3>
878861
<p>The <code>configure</code> and <code>make</code> commands tries to play nice with bash command-line completion (using <code>&lt;tab&gt;</code> or <code>&lt;tab&gt;&lt;tab&gt;</code>). To use this functionality, make sure you enable completion in your <code>~/.bashrc</code> (see instructions for bash in your operating system).</p>
879862
<p>Make completion will work out of the box, and will complete valid make targets. For instance, typing <code>make jdk-i&lt;tab&gt;</code> will complete to <code>make jdk-image</code>.</p>
@@ -927,14 +910,6 @@ <h4 id="skipping-the-dependency-check">Skipping the Dependency Check</h4>
927910
<h4 id="rebuilding-part-of-java.base-jdk_filter">Rebuilding Part of java.base (JDK_FILTER)</h4>
928911
<p>If you are modifying files in <code>java.base</code>, which is the by far largest module in the JDK, then you need to rebuild all those files whenever a single file has changed. (This inefficiency will hopefully be addressed in JDK 10.)</p>
929912
<p>As a hack, you can use the make control variable <code>JDK_FILTER</code> to specify a pattern that will be used to limit the set of files being recompiled. For instance, <code>make java.base JDK_FILTER=javax/crypto</code> (or, to combine methods, <code>make java.base-java-only JDK_FILTER=javax/crypto</code>) will limit the compilation to files in the <code>javax.crypto</code> package.</p>
930-
<h3 id="learn-about-mercurial">Learn About Mercurial</h3>
931-
<p>To become an efficient JDK developer, it is recommended that you invest in learning Mercurial properly. Here are some links that can get you started:</p>
932-
<ul>
933-
<li><a href="http://www.mercurial-scm.org/wiki/GitConcepts">Mercurial for git users</a></li>
934-
<li><a href="http://www.mercurial-scm.org/wiki/Tutorial">The official Mercurial tutorial</a></li>
935-
<li><a href="http://hginit.com/">hg init</a></li>
936-
<li><a href="http://hgbook.red-bean.com/read/">Mercurial: The Definitive Guide</a></li>
937-
</ul>
938913
<h2 id="understanding-the-build-system">Understanding the Build System</h2>
939914
<p>This section will give you a more technical description on the details of the build system.</p>
940915
<h3 id="configurations">Configurations</h3>

‎doc/building.md

+35-67
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
## TL;DR (Instructions for the Impatient)
44

55
If you are eager to try out building the JDK, these simple steps works most of
6-
the time. They assume that you have installed Mercurial (and Cygwin if running
6+
the time. They assume that you have installed Git (and Cygwin if running
77
on Windows) and cloned the top-level JDK repository that you want to build.
88

99
1. [Get the complete source code](#getting-the-source-code): \
10-
`hg clone http://hg.openjdk.java.net/jdk/jdk`
10+
`git clone https://git.openjdk.java.net/jdk/`
1111

1212
2. [Run configure](#running-configure): \
1313
`bash configure`
@@ -47,14 +47,14 @@ JDK.
4747

4848
Make sure you are getting the correct version. As of JDK 10, the source is no
4949
longer split into separate repositories so you only need to clone one single
50-
repository. At the [OpenJDK Mercurial server](http://hg.openjdk.java.net/) you
51-
can see a list of all available forests. If you want to build an older version,
50+
repository. At the [OpenJDK Git site](https://git.openjdk.java.net/) you
51+
can see a list of all available repositories. If you want to build an older version,
5252
e.g. JDK 8, it is recommended that you get the `jdk8u` forest, which contains
5353
incremental updates, instead of the `jdk8` forest, which was frozen at JDK 8 GA.
5454

55-
If you are new to Mercurial, a good place to start is the [Mercurial Beginner's
56-
Guide](http://www.mercurial-scm.org/guide). The rest of this document assumes a
57-
working knowledge of Mercurial.
55+
If you are new to Git, a good place to start is the book [Pro
56+
Git](https://git-scm.com/book/en/v2). The rest of this document
57+
assumes a working knowledge of Git.
5858

5959
### Special Considerations
6060

@@ -89,9 +89,21 @@ on where and how to check out the source code.
8989
directory. This is especially important if your user name contains
9090
spaces and/or mixed upper and lower case letters.
9191

92-
* Clone the JDK repository using the Cygwin command line `hg` client
93-
as instructed in this document. That is, do *not* use another Mercurial
94-
client such as TortoiseHg.
92+
* You need to install a git client. You have two choices, Cygwin git or
93+
Git for Windows. Unfortunately there are pros and cons with each choice.
94+
95+
* The Cygwin `git` client has no line ending issues and understands
96+
Cygwin paths (which are used throughout the JDK build system).
97+
However, it does not currently work well with the Skara CLI tooling.
98+
Please see the [Skara wiki on Git clients](
99+
https://wiki.openjdk.java.net/display/SKARA/Skara#Skara-Git) for
100+
up-to-date information about the Skara git client support.
101+
102+
* The [Git for Windows](https://gitforwindows.org) client has issues
103+
with line endings, and do not understand Cygwin paths. It does work
104+
well with the Skara CLI tooling, however. To alleviate the line ending
105+
problems, make sure you set `core.autocrlf` to `false` (this is asked
106+
during installation).
95107

96108
Failure to follow this procedure might result in hard-to-debug build
97109
problems.
@@ -171,7 +183,7 @@ supported due to a too old bash; msys2 and the new Windows Subsystem for Linux
171183
require effort to implement.)
172184

173185
Internally in the build system, all paths are represented as Unix-style paths,
174-
e.g. `/cygdrive/c/hg/jdk9/Makefile` rather than `C:\hg\jdk9\Makefile`. This
186+
e.g. `/cygdrive/c/git/jdk/Makefile` rather than `C:\git\jdk\Makefile`. This
175187
rule also applies to input to the build system, e.g. in arguments to
176188
`configure`. So, use `--with-msvcr-dll=/cygdrive/c/msvcr100.dll` rather than
177189
`--with-msvcr-dll=c:\msvcr100.dll`. For details on this conversion, see the section
@@ -1261,14 +1273,14 @@ ERROR: Build failed for target 'hotspot' in configuration 'linux-x64' (exit code
12611273

12621274
=== Output from failing command(s) repeated here ===
12631275
* For target hotspot_variant-server_libjvm_objs_psMemoryPool.o:
1264-
/localhome/hg/jdk9-sandbox/hotspot/src/share/vm/services/psMemoryPool.cpp:1:1: error: 'failhere' does not name a type
1276+
/localhome/git/jdk-sandbox/hotspot/src/share/vm/services/psMemoryPool.cpp:1:1: error: 'failhere' does not name a type
12651277
... (rest of output omitted)
12661278

1267-
* All command lines available in /localhome/hg/jdk9-sandbox/build/linux-x64/make-support/failure-logs.
1279+
* All command lines available in /localhome/git/jdk-sandbox/build/linux-x64/make-support/failure-logs.
12681280
=== End of repeated output ===
12691281

12701282
=== Make failed targets repeated here ===
1271-
lib/CompileJvm.gmk:207: recipe for target '/localhome/hg/jdk9-sandbox/build/linux-x64/hotspot/variant-server/libjvm/objs/psMemoryPool.o' failed
1283+
lib/CompileJvm.gmk:207: recipe for target '/localhome/git/jdk-sandbox/build/linux-x64/hotspot/variant-server/libjvm/objs/psMemoryPool.o' failed
12721284
make/Main.gmk:263: recipe for target 'hotspot-server-libs' failed
12731285
=== End of repeated output ===
12741286

@@ -1358,17 +1370,15 @@ Incremental rebuilds mean that when you modify part of the product, only the
13581370
affected parts get rebuilt. While this works great in most cases, and
13591371
significantly speed up the development process, from time to time complex
13601372
interdependencies will result in an incorrect build result. This is the most
1361-
common cause for unexpected build problems, together with inconsistencies
1362-
between the different Mercurial repositories in the forest.
1373+
common cause for unexpected build problems.
13631374
13641375
Here are a suggested list of things to try if you are having unexpected build
13651376
problems. Each step requires more time than the one before, so try them in
13661377
order. Most issues will be solved at step 1 or 2.
13671378
1368-
1. Make sure your forest is up-to-date
1379+
1. Make sure your repository is up-to-date
13691380
1370-
Run `bash get_source.sh` to make sure you have the latest version of all
1371-
repositories.
1381+
Run `git pull origin master` to make sure you have the latest changes.
13721382
13731383
2. Clean build results
13741384
@@ -1393,13 +1403,13 @@ order. Most issues will be solved at step 1 or 2.
13931403
make
13941404
```
13951405
1396-
4. Re-clone the Mercurial forest
1406+
4. Re-clone the Git repository
13971407
1398-
Sometimes the Mercurial repositories themselves gets in a state that causes
1399-
the product to be un-buildable. In such a case, the simplest solution is
1400-
often the "sledgehammer approach": delete the entire forest, and re-clone
1401-
it. If you have local changes, save them first to a different location
1402-
using `hg export`.
1408+
Sometimes the Git repository gets in a state that causes the product
1409+
to be un-buildable. In such a case, the simplest solution is often the
1410+
"sledgehammer approach": delete the entire repository, and re-clone it.
1411+
If you have local changes, save them first to a different location using
1412+
`git format-patch`.
14031413
14041414
### Specific Build Issues
14051415
@@ -1450,38 +1460,6 @@ contact the Adoption Group. See the section on [Contributing to OpenJDK](
14501460
14511461
## Hints and Suggestions for Advanced Users
14521462
1453-
### Setting Up a Forest for Pushing Changes (defpath)
1454-
1455-
To help you prepare a proper push path for a Mercurial repository, there exists
1456-
a useful tool known as [defpath](
1457-
http://openjdk.java.net/projects/code-tools/defpath). It will help you setup a
1458-
proper push path for pushing changes to the JDK.
1459-
1460-
Install the extension by cloning
1461-
`http://hg.openjdk.java.net/code-tools/defpath` and updating your `.hgrc` file.
1462-
Here's one way to do this:
1463-
1464-
```
1465-
cd ~
1466-
mkdir hg-ext
1467-
cd hg-ext
1468-
hg clone http://hg.openjdk.java.net/code-tools/defpath
1469-
cat << EOT >> ~/.hgrc
1470-
[extensions]
1471-
defpath=~/hg-ext/defpath/defpath.py
1472-
EOT
1473-
```
1474-
1475-
You can now setup a proper push path using:
1476-
```
1477-
hg defpath -d -u <your OpenJDK username>
1478-
```
1479-
1480-
If you also have the `trees` extension installed in Mercurial, you will
1481-
automatically get a `tdefpath` command, which is even more useful. By running
1482-
`hg tdefpath -du <username>` in the top repository of your forest, all repos
1483-
will get setup automatically. This is the recommended usage.
1484-
14851463
### Bash Completion
14861464
14871465
The `configure` and `make` commands tries to play nice with bash command-line
@@ -1624,16 +1602,6 @@ instance, `make java.base JDK_FILTER=javax/crypto` (or, to combine methods,
16241602
`make java.base-java-only JDK_FILTER=javax/crypto`) will limit the compilation
16251603
to files in the `javax.crypto` package.
16261604
1627-
### Learn About Mercurial
1628-
1629-
To become an efficient JDK developer, it is recommended that you invest in
1630-
learning Mercurial properly. Here are some links that can get you started:
1631-
1632-
* [Mercurial for git users](http://www.mercurial-scm.org/wiki/GitConcepts)
1633-
* [The official Mercurial tutorial](http://www.mercurial-scm.org/wiki/Tutorial)
1634-
* [hg init](http://hginit.com/)
1635-
* [Mercurial: The Definitive Guide](http://hgbook.red-bean.com/read/)
1636-
16371605
## Understanding the Build System
16381606
16391607
This section will give you a more technical description on the details of the

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Aug 23, 2021

@openjdk-notifier[bot]
Please sign in to comment.