author | mli |
Thu, 19 Jul 2018 16:22:19 +0800 | |
changeset 51117 | c96c7d08ae49 |
parent 50885 | 7c728fa9d1af |
child 51237 | ea900a7dc7d7 |
permissions | -rw-r--r-- |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1 |
% Building the JDK |
45763 | 2 |
|
3 |
## TL;DR (Instructions for the Impatient) |
|
4 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
5 |
If you are eager to try out building the JDK, these simple steps works most of |
45763 | 6 |
the time. They assume that you have installed Mercurial (and Cygwin if running |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
7 |
on Windows) and cloned the top-level JDK repository that you want to build. |
45763 | 8 |
|
9 |
1. [Get the complete source code](#getting-the-source-code): \ |
|
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
10 |
`hg clone http://hg.openjdk.java.net/jdk/jdk` |
45763 | 11 |
|
12 |
2. [Run configure](#running-configure): \ |
|
13 |
`bash configure` |
|
33030 | 14 |
|
45763 | 15 |
If `configure` fails due to missing dependencies (to either the |
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
16 |
[toolchain](#native-compiler-toolchain-requirements), [build tools]( |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
17 |
#build-tools-requirements), [external libraries]( |
45763 | 18 |
#external-library-requirements) or the [boot JDK](#boot-jdk-requirements)), |
19 |
most of the time it prints a suggestion on how to resolve the situation on |
|
20 |
your platform. Follow the instructions, and try running `bash configure` |
|
21 |
again. |
|
33030 | 22 |
|
45763 | 23 |
3. [Run make](#running-make): \ |
24 |
`make images` |
|
25 |
||
26 |
4. Verify your newly built JDK: \ |
|
27 |
`./build/*/images/jdk/bin/java -version` |
|
28 |
||
29 |
5. [Run basic tests](##running-tests): \ |
|
30 |
`make run-test-tier1` |
|
31 |
||
32 |
If any of these steps failed, or if you want to know more about build |
|
33 |
requirements or build functionality, please continue reading this document. |
|
44078
673240c54c2e
8176509: Use pandoc for converting build readme to html
ihse
parents:
41040
diff
changeset
|
34 |
|
33030 | 35 |
## Introduction |
36 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
37 |
The JDK is a complex software project. Building it requires a certain amount of |
45763 | 38 |
technical expertise, a fair number of dependencies on external software, and |
39 |
reasonably powerful hardware. |
|
33030 | 40 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
41 |
If you just want to use the JDK and not build it yourself, this document is not |
45763 | 42 |
for you. See for instance [OpenJDK installation]( |
43 |
http://openjdk.java.net/install) for some methods of installing a prebuilt |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
44 |
JDK. |
33030 | 45 |
|
45763 | 46 |
## Getting the Source Code |
47 |
||
47217 | 48 |
Make sure you are getting the correct version. As of JDK 10, the source is no |
49 |
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, |
|
52 |
e.g. JDK 8, it is recommended that you get the `jdk8u` forest, which contains |
|
53 |
incremental updates, instead of the `jdk8` forest, which was frozen at JDK 8 GA. |
|
45763 | 54 |
|
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. |
|
58 |
||
59 |
### Special Considerations |
|
60 |
||
61 |
For a smooth building experience, it is recommended that you follow these rules |
|
62 |
on where and how to check out the source code. |
|
63 |
||
64 |
* Do not check out the source code in a path which contains spaces. Chances |
|
65 |
are the build will not work. This is most likely to be an issue on Windows |
|
66 |
systems. |
|
67 |
||
68 |
* Do not check out the source code in a path which has a very long name or is |
|
69 |
nested many levels deep. Chances are you will hit an OS limitation during |
|
70 |
the build. |
|
71 |
||
72 |
* Put the source code on a local disk, not a network share. If possible, use |
|
73 |
an SSD. The build process is very disk intensive, and having slow disk |
|
74 |
access will significantly increase build times. If you need to use a |
|
75 |
network share for the source code, see below for suggestions on how to keep |
|
76 |
the build artifacts on a local disk. |
|
77 |
||
78 |
* On Windows, extra care must be taken to make sure the [Cygwin](#cygwin) |
|
79 |
environment is consistent. It is recommended that you follow this |
|
80 |
procedure: |
|
81 |
||
82 |
* Create the directory that is going to contain the top directory of the |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
83 |
JDK clone by using the `mkdir` command in the Cygwin bash shell. |
45763 | 84 |
That is, do *not* create it using Windows Explorer. This will ensure |
85 |
that it will have proper Cygwin attributes, and that it's children will |
|
86 |
inherit those attributes. |
|
87 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
88 |
* Do not put the JDK clone in a path under your Cygwin home |
45763 | 89 |
directory. This is especially important if your user name contains |
90 |
spaces and/or mixed upper and lower case letters. |
|
91 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
92 |
* Clone the JDK repository using the Cygwin command line `hg` client |
45763 | 93 |
as instructed in this document. That is, do *not* use another Mercurial |
94 |
client such as TortoiseHg. |
|
95 |
||
96 |
Failure to follow this procedure might result in hard-to-debug build |
|
97 |
problems. |
|
98 |
||
99 |
## Build Hardware Requirements |
|
100 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
101 |
The JDK is a massive project, and require machines ranging from decent to |
45763 | 102 |
powerful to be able to build in a reasonable amount of time, or to be able to |
103 |
complete a build at all. |
|
104 |
||
105 |
We *strongly* recommend usage of an SSD disk for the build, since disk speed is |
|
106 |
one of the limiting factors for build performance. |
|
107 |
||
108 |
### Building on x86 |
|
109 |
||
110 |
At a minimum, a machine with 2-4 cores is advisable, as well as 2-4 GB of RAM. |
|
111 |
(The more cores to use, the more memory you need.) At least 6 GB of free disk |
|
112 |
space is required (8 GB minimum for building on Solaris). |
|
113 |
||
114 |
Even for 32-bit builds, it is recommended to use a 64-bit build machine, and |
|
115 |
instead create a 32-bit target using `--with-target-bits=32`. |
|
116 |
||
117 |
### Building on sparc |
|
118 |
||
119 |
At a minimum, a machine with 4 cores is advisable, as well as 4 GB of RAM. (The |
|
120 |
more cores to use, the more memory you need.) At least 8 GB of free disk space |
|
121 |
is required. |
|
122 |
||
123 |
### Building on arm/aarch64 |
|
124 |
||
125 |
This is not recommended. Instead, see the section on [Cross-compiling]( |
|
126 |
#cross-compiling). |
|
127 |
||
128 |
## Operating System Requirements |
|
129 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
130 |
The mainline JDK project supports Linux, Solaris, macOS, AIX and Windows. |
45763 | 131 |
Support for other operating system, e.g. BSD, exists in separate "port" |
132 |
projects. |
|
133 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
134 |
In general, the JDK can be built on a wide range of versions of these operating |
45763 | 135 |
systems, but the further you deviate from what is tested on a daily basis, the |
136 |
more likely you are to run into problems. |
|
137 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
138 |
This table lists the OS versions used by Oracle when building the JDK. Such |
45763 | 139 |
information is always subject to change, but this table is up to date at the |
140 |
time of writing. |
|
141 |
||
142 |
Operating system Vendor/version used |
|
143 |
----------------- ------------------------------------------------------- |
|
144 |
Linux Oracle Enterprise Linux 6.4 / 7.1 (using kernel 3.8.13) |
|
145 |
Solaris Solaris 11.1 SRU 21.4.1 / 11.2 SRU 5.5 |
|
146 |
macOS Mac OS X 10.9 (Mavericks) / 10.10 (Yosemite) |
|
147 |
Windows Windows Server 2012 R2 |
|
33030 | 148 |
|
45763 | 149 |
The double version numbers for Linux, Solaris and macOS is due to the hybrid |
150 |
model used at Oracle, where header files and external libraries from an older |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
151 |
version are used when building on a more modern version of the OS. |
45763 | 152 |
|
153 |
The Build Group has a wiki page with [Supported Build Platforms]( |
|
154 |
https://wiki.openjdk.java.net/display/Build/Supported+Build+Platforms). From |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
155 |
time to time, this is updated by contributors to list successes or failures of |
45763 | 156 |
building on different platforms. |
157 |
||
158 |
### Windows |
|
159 |
||
160 |
Windows XP is not a supported platform, but all newer Windows should be able to |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
161 |
build the JDK. |
45763 | 162 |
|
163 |
On Windows, it is important that you pay attention to the instructions in the |
|
164 |
[Special Considerations](#special-considerations). |
|
165 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
166 |
Windows is the only non-POSIX OS supported by the JDK, and as such, requires |
50586
4bba6dea2e73
8200867: Remove references to "jdk 9" in build system
ihse
parents:
50490
diff
changeset
|
167 |
some extra care. A POSIX support layer is required to build on Windows. |
4bba6dea2e73
8200867: Remove references to "jdk 9" in build system
ihse
parents:
50490
diff
changeset
|
168 |
Currently, the only supported such layer is Cygwin. (Msys is no longer |
45763 | 169 |
supported due to a too old bash; msys2 and the new Windows Subsystem for Linux |
170 |
(WSL) would likely be possible to support in a future version but that would |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
171 |
require effort to implement.) |
45763 | 172 |
|
173 |
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 |
|
175 |
rule also applies to input to the build system, e.g. in arguments to |
|
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49159
diff
changeset
|
176 |
`configure`. So, use `--with-msvcr-dll=/cygdrive/c/msvcr100.dll` rather than |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49159
diff
changeset
|
177 |
`--with-msvcr-dll=c:\msvcr100.dll`. For details on this conversion, see the section |
45763 | 178 |
on [Fixpath](#fixpath). |
179 |
||
180 |
#### Cygwin |
|
181 |
||
182 |
A functioning [Cygwin](http://www.cygwin.com/) environment is thus required for |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
183 |
building the JDK on Windows. If you have a 64-bit OS, we strongly recommend |
45763 | 184 |
using the 64-bit version of Cygwin. |
185 |
||
186 |
**Note:** Cygwin has a model of continuously updating all packages without any |
|
187 |
easy way to install or revert to a specific version of a package. This means |
|
188 |
that whenever you add or update a package in Cygwin, you might (inadvertently) |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
189 |
update tools that are used by the JDK build process, and that can cause |
45763 | 190 |
unexpected build problems. |
191 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
192 |
The JDK requires GNU Make 4.0 or greater on Windows. This is usually not a |
45763 | 193 |
problem, since Cygwin currently only distributes GNU Make at a version above |
194 |
4.0. |
|
195 |
||
196 |
Apart from the basic Cygwin installation, the following packages must also be |
|
197 |
installed: |
|
198 |
||
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
199 |
* `autoconf` |
45763 | 200 |
* `make` |
201 |
* `zip` |
|
202 |
* `unzip` |
|
203 |
||
204 |
Often, you can install these packages using the following command line: |
|
205 |
``` |
|
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
206 |
<path to Cygwin setup>/setup-x86_64 -q -P autoconf -P make -P unzip -P zip |
45763 | 207 |
``` |
208 |
||
209 |
Unfortunately, Cygwin can be unreliable in certain circumstances. If you |
|
210 |
experience build tool crashes or strange issues when building on Windows, |
|
211 |
please check the Cygwin FAQ on the ["BLODA" list]( |
|
212 |
https://cygwin.com/faq/faq.html#faq.using.bloda) and the section on [fork() |
|
213 |
failures](https://cygwin.com/faq/faq.html#faq.using.fixing-fork-failures). |
|
214 |
||
215 |
### Solaris |
|
216 |
||
217 |
See `make/devkit/solaris11.1-package-list.txt` for a list of recommended |
|
218 |
packages to install when building on Solaris. The versions specified in this |
|
219 |
list is the versions used by the daily builds at Oracle, and is likely to work |
|
220 |
properly. |
|
221 |
||
222 |
Older versions of Solaris shipped a broken version of `objcopy`. At least |
|
223 |
version 2.21.1 is needed, which is provided by Solaris 11 Update 1. Objcopy is |
|
224 |
needed if you want to have external debug symbols. Please make sure you are |
|
225 |
using at least version 2.21.1 of objcopy, or that you disable external debug |
|
226 |
symbols. |
|
227 |
||
228 |
### macOS |
|
229 |
||
230 |
Apple is using a quite aggressive scheme of pushing OS updates, and coupling |
|
231 |
these updates with required updates of Xcode. Unfortunately, this makes it |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
232 |
difficult for a project such as the JDK to keep pace with a continuously updated |
45763 | 233 |
machine running macOS. See the section on [Apple Xcode](#apple-xcode) on some |
234 |
strategies to deal with this. |
|
235 |
||
236 |
It is recommended that you use at least Mac OS X 10.9 (Mavericks). At the time |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
237 |
of writing, the JDK has been successfully compiled on macOS versions up to |
45763 | 238 |
10.12.5 (Sierra), using XCode 8.3.2 and `--disable-warnings-as-errors`. |
239 |
||
240 |
The standard macOS environment contains the basic tooling needed to build, but |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
241 |
for external libraries a package manager is recommended. The JDK uses |
45763 | 242 |
[homebrew](https://brew.sh/) in the examples, but feel free to use whatever |
243 |
manager you want (or none). |
|
244 |
||
245 |
### Linux |
|
246 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
247 |
It is often not much problem to build the JDK on Linux. The only general advice |
45763 | 248 |
is to try to use the compilers, external libraries and header files as provided |
249 |
by your distribution. |
|
250 |
||
251 |
The basic tooling is provided as part of the core operating system, but you |
|
252 |
will most likely need to install developer packages. |
|
253 |
||
254 |
For apt-based distributions (Debian, Ubuntu, etc), try this: |
|
255 |
``` |
|
256 |
sudo apt-get install build-essential |
|
257 |
``` |
|
258 |
||
259 |
For rpm-based distributions (Fedora, Red Hat, etc), try this: |
|
260 |
``` |
|
261 |
sudo yum groupinstall "Development Tools" |
|
262 |
``` |
|
263 |
||
264 |
### AIX |
|
265 |
||
266 |
The regular builds by SAP is using AIX version 7.1, but AIX 5.3 is also |
|
267 |
supported. See the [OpenJDK PowerPC Port Status Page]( |
|
268 |
http://cr.openjdk.java.net/~simonis/ppc-aix-port) for details. |
|
269 |
||
270 |
## Native Compiler (Toolchain) Requirements |
|
271 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
272 |
Large portions of the JDK consists of native code, that needs to be compiled to |
45763 | 273 |
be able to run on the target platform. In theory, toolchain and operating |
274 |
system should be independent factors, but in practice there's more or less a |
|
275 |
one-to-one correlation between target operating system and toolchain. |
|
276 |
||
277 |
Operating system Supported toolchain |
|
278 |
------------------ ------------------------- |
|
279 |
Linux gcc, clang |
|
280 |
macOS Apple Xcode (using clang) |
|
281 |
Solaris Oracle Solaris Studio |
|
282 |
AIX IBM XL C/C++ |
|
283 |
Windows Microsoft Visual Studio |
|
284 |
||
285 |
Please see the individual sections on the toolchains for version |
|
286 |
recommendations. As a reference, these versions of the toolchains are used, at |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
287 |
the time of writing, by Oracle for the daily builds of the JDK. It should be |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
288 |
possible to compile the JDK with both older and newer versions, but the closer |
45763 | 289 |
you stay to this list, the more likely you are to compile successfully without |
290 |
issues. |
|
291 |
||
292 |
Operating system Toolchain version |
|
293 |
------------------ ------------------------------------------------------- |
|
50586
4bba6dea2e73
8200867: Remove references to "jdk 9" in build system
ihse
parents:
50490
diff
changeset
|
294 |
Linux gcc 7.3.0 |
45763 | 295 |
macOS Apple Xcode 6.3 (using clang 6.1.0) |
296 |
Solaris Oracle Solaris Studio 12.4 (with compiler version 5.13) |
|
297 |
Windows Microsoft Visual Studio 2013 update 4 |
|
298 |
||
299 |
### gcc |
|
300 |
||
50586
4bba6dea2e73
8200867: Remove references to "jdk 9" in build system
ihse
parents:
50490
diff
changeset
|
301 |
The minimum accepted version of gcc is 4.8. Older versions will generate a warning |
45877
640f1904ebb8
8184338: switch minimum supported gcc version to 4.7
mbaesken
parents:
45763
diff
changeset
|
302 |
by `configure` and are unlikely to work. |
45763 | 303 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
304 |
The JDK is currently known to be able to compile with at least version 7.4 of |
50586
4bba6dea2e73
8200867: Remove references to "jdk 9" in build system
ihse
parents:
50490
diff
changeset
|
305 |
gcc. |
45763 | 306 |
|
307 |
In general, any version between these two should be usable. |
|
308 |
||
309 |
### clang |
|
310 |
||
311 |
The minimum accepted version of clang is 3.2. Older versions will not be |
|
312 |
accepted by `configure`. |
|
313 |
||
314 |
To use clang instead of gcc on Linux, use `--with-toolchain-type=clang`. |
|
315 |
||
316 |
### Apple Xcode |
|
317 |
||
318 |
The oldest supported version of Xcode is 5. |
|
319 |
||
320 |
You will need the Xcode command lines developers tools to be able to build |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
321 |
the JDK. (Actually, *only* the command lines tools are needed, not the IDE.) |
45763 | 322 |
The simplest way to install these is to run: |
323 |
``` |
|
324 |
xcode-select --install |
|
325 |
``` |
|
326 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
327 |
It is advisable to keep an older version of Xcode for building the JDK when |
45763 | 328 |
updating Xcode. This [blog page]( |
329 |
http://iosdevelopertips.com/xcode/install-multiple-versions-of-xcode.html) has |
|
330 |
good suggestions on managing multiple Xcode versions. To use a specific version |
|
331 |
of Xcode, use `xcode-select -s` before running `configure`, or use |
|
332 |
`--with-toolchain-path` to point to the version of Xcode to use, e.g. |
|
333 |
`configure --with-toolchain-path=/Applications/Xcode5.app/Contents/Developer/usr/bin` |
|
334 |
||
335 |
If you have recently (inadvertently) updated your OS and/or Xcode version, and |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
336 |
the JDK can no longer be built, please see the section on [Problems with the |
45763 | 337 |
Build Environment](#problems-with-the-build-environment), and [Getting |
338 |
Help](#getting-help) to find out if there are any recent, non-merged patches |
|
339 |
available for this update. |
|
340 |
||
341 |
### Oracle Solaris Studio |
|
342 |
||
343 |
The minimum accepted version of the Solaris Studio compilers is 5.13 |
|
344 |
(corresponding to Solaris Studio 12.4). Older versions will not be accepted by |
|
345 |
configure. |
|
33030 | 346 |
|
34595
09596fe63e2d
8145391: Updated jprt.properties, devtools, jib and readme with SS12u4
erikj
parents:
33030
diff
changeset
|
347 |
The Solaris Studio installation should contain at least these packages: |
33030 | 348 |
|
45763 | 349 |
Package Version |
350 |
-------------------------------------------------- ------------- |
|
351 |
developer/solarisstudio-124/backend 12.4-1.0.6.0 |
|
352 |
developer/solarisstudio-124/c++ 12.4-1.0.10.0 |
|
353 |
developer/solarisstudio-124/cc 12.4-1.0.4.0 |
|
354 |
developer/solarisstudio-124/library/c++-libs 12.4-1.0.10.0 |
|
355 |
developer/solarisstudio-124/library/math-libs 12.4-1.0.0.1 |
|
356 |
developer/solarisstudio-124/library/studio-gccrt 12.4-1.0.0.1 |
|
357 |
developer/solarisstudio-124/studio-common 12.4-1.0.0.1 |
|
358 |
developer/solarisstudio-124/studio-ja 12.4-1.0.0.1 |
|
359 |
developer/solarisstudio-124/studio-legal 12.4-1.0.0.1 |
|
360 |
developer/solarisstudio-124/studio-zhCN 12.4-1.0.0.1 |
|
361 |
||
362 |
Compiling with Solaris Studio can sometimes be finicky. This is the exact |
|
363 |
version used by Oracle, which worked correctly at the time of writing: |
|
364 |
``` |
|
365 |
$ cc -V |
|
366 |
cc: Sun C 5.13 SunOS_i386 2014/10/20 |
|
367 |
$ CC -V |
|
368 |
CC: Sun C++ 5.13 SunOS_i386 151846-10 2015/10/30 |
|
369 |
``` |
|
370 |
||
371 |
### Microsoft Visual Studio |
|
372 |
||
373 |
The minimum accepted version of Visual Studio is 2010. Older versions will not |
|
374 |
be accepted by `configure`. The maximum accepted version of Visual Studio is |
|
375 |
2013. |
|
376 |
||
377 |
If you have multiple versions of Visual Studio installed, `configure` will by |
|
378 |
default pick the latest. You can request a specific version to be used by |
|
379 |
setting `--with-toolchain-version`, e.g. `--with-toolchain-version=2010`. |
|
33030 | 380 |
|
45763 | 381 |
If you get `LINK: fatal error LNK1123: failure during conversion to COFF: file |
382 |
invalid` when building using Visual Studio 2010, you have encountered |
|
383 |
[KB2757355](http://support.microsoft.com/kb/2757355), a bug triggered by a |
|
384 |
specific installation order. However, the solution suggested by the KB article |
|
385 |
does not always resolve the problem. See [this stackoverflow discussion]( |
|
386 |
https://stackoverflow.com/questions/10888391) for other suggestions. |
|
33030 | 387 |
|
45763 | 388 |
### IBM XL C/C++ |
389 |
||
390 |
The regular builds by SAP is using version 12.1, described as `IBM XL C/C++ for |
|
391 |
AIX, V12.1 (5765-J02, 5725-C72) Version: 12.01.0000.0017`. |
|
392 |
||
393 |
See the [OpenJDK PowerPC Port Status Page]( |
|
394 |
http://cr.openjdk.java.net/~simonis/ppc-aix-port) for details. |
|
395 |
||
396 |
## Boot JDK Requirements |
|
33030 | 397 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
398 |
Paradoxically, building the JDK requires a pre-existing JDK. This is called the |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
399 |
"boot JDK". The boot JDK does not, however, have to be a JDK built directly from |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
400 |
the source code available in the OpenJDK Community. If you are porting the JDK |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
401 |
to a new platform, chances are that there already exists another JDK for that |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
402 |
platform that is usable as boot JDK. |
33030 | 403 |
|
45763 | 404 |
The rule of thumb is that the boot JDK for building JDK major version *N* |
49159
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
405 |
should be a JDK of major version *N-1*, so for building JDK 9 a JDK 8 would be |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
406 |
suitable as boot JDK. However, the JDK should be able to "build itself", so an |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
407 |
up-to-date build of the current JDK source is an acceptable alternative. If |
49159
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
408 |
you are following the *N-1* rule, make sure you've got the latest update |
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
409 |
version, since JDK 8 GA might not be able to build JDK 9 on all platforms. |
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
410 |
|
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
411 |
Early in the release cycle, version *N-1* may not yet have been released. In |
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
412 |
that case, the preferred boot JDK will be version *N-2* until version *N-1* |
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
413 |
is available. |
33030 | 414 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
415 |
If the boot JDK is not automatically detected, or the wrong JDK is picked, use |
45763 | 416 |
`--with-boot-jdk` to point to the JDK to use. |
417 |
||
49159
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
418 |
### Getting JDK binaries |
45763 | 419 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
420 |
JDK binaries for Linux, Windows and macOS can be downloaded from |
49159
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
421 |
[jdk.java.net](http://jdk.java.net). An alternative is to download the |
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
422 |
[Oracle JDK](http://www.oracle.com/technetwork/java/javase/downloads). Another |
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
423 |
is the [Adopt OpenJDK Project](https://adoptopenjdk.net/), which publishes |
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
424 |
experimental prebuilt binaries for various platforms. |
45763 | 425 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
426 |
On Linux you can also get a JDK from the Linux distribution. On apt-based |
49159
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
427 |
distros (like Debian and Ubuntu), `sudo apt-get install openjdk-<VERSION>-jdk` |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
428 |
is typically enough to install a JDK \<VERSION\>. On rpm-based distros (like |
49159
436f1e03fd04
8199266: Update boot and build jdk requirements in configure
erikj
parents:
48743
diff
changeset
|
429 |
Fedora and Red Hat), try `sudo yum install java-<VERSION>-openjdk-devel`. |
45763 | 430 |
|
431 |
## External Library Requirements |
|
432 |
||
433 |
Different platforms require different external libraries. In general, libraries |
|
434 |
are not optional - that is, they are either required or not used. |
|
435 |
||
436 |
If a required library is not detected by `configure`, you need to provide the |
|
437 |
path to it. There are two forms of the `configure` arguments to point to an |
|
438 |
external library: `--with-<LIB>=<path>` or `--with-<LIB>-include=<path to |
|
439 |
include> --with-<LIB>-lib=<path to lib>`. The first variant is more concise, |
|
440 |
but require the include files an library files to reside in a default hierarchy |
|
441 |
under this directory. In most cases, it works fine. |
|
33030 | 442 |
|
45763 | 443 |
As a fallback, the second version allows you to point to the include directory |
444 |
and the lib directory separately. |
|
445 |
||
446 |
### FreeType |
|
447 |
||
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49159
diff
changeset
|
448 |
FreeType2 from [The FreeType Project](http://www.freetype.org/) is not required |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49159
diff
changeset
|
449 |
on any platform. The exception is on Unix-based platforms when configuring such |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49159
diff
changeset
|
450 |
that the build artifacts will reference a system installed library, |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
451 |
rather than bundling the JDK’s own copy. |
33030 | 452 |
|
45763 | 453 |
* To install on an apt-based Linux, try running `sudo apt-get install |
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49159
diff
changeset
|
454 |
libfreetype6-dev`. |
45763 | 455 |
* To install on an rpm-based Linux, try running `sudo yum install |
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49159
diff
changeset
|
456 |
freetype-devel`. |
45763 | 457 |
* To install on Solaris, try running `pkg install system/library/freetype-2`. |
33030 | 458 |
|
49234
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49159
diff
changeset
|
459 |
Use `--with-freetype-include=<path>` and `--with-freetype-lib=<path>` |
3375a8039fde
8193017: Import freetype sources into OpenJDK source tree
prr
parents:
49159
diff
changeset
|
460 |
if `configure` does not automatically locate the platform FreeType files. |
45763 | 461 |
|
462 |
### CUPS |
|
463 |
||
464 |
CUPS, [Common UNIX Printing System](http://www.cups.org) header files are |
|
465 |
required on all platforms, except Windows. Often these files are provided by |
|
466 |
your operating system. |
|
33030 | 467 |
|
45763 | 468 |
* To install on an apt-based Linux, try running `sudo apt-get install |
469 |
libcups2-dev`. |
|
470 |
* To install on an rpm-based Linux, try running `sudo yum install |
|
471 |
cups-devel`. |
|
472 |
* To install on Solaris, try running `pkg install print/cups`. |
|
33030 | 473 |
|
45763 | 474 |
Use `--with-cups=<path>` if `configure` does not properly locate your CUPS |
475 |
files. |
|
476 |
||
477 |
### X11 |
|
478 |
||
479 |
Certain [X11](http://www.x.org/) libraries and include files are required on |
|
480 |
Linux and Solaris. |
|
33030 | 481 |
|
45763 | 482 |
* To install on an apt-based Linux, try running `sudo apt-get install |
483 |
libx11-dev libxext-dev libxrender-dev libxtst-dev libxt-dev`. |
|
484 |
* To install on an rpm-based Linux, try running `sudo yum install |
|
485 |
libXtst-devel libXt-devel libXrender-devel libXi-devel`. |
|
486 |
* To install on Solaris, try running `pkg install x11/header/x11-protocols |
|
487 |
x11/library/libice x11/library/libpthread-stubs x11/library/libsm |
|
488 |
x11/library/libx11 x11/library/libxau x11/library/libxcb |
|
489 |
x11/library/libxdmcp x11/library/libxevie x11/library/libxext |
|
490 |
x11/library/libxrender x11/library/libxscrnsaver x11/library/libxtst |
|
491 |
x11/library/toolkit/libxt`. |
|
492 |
||
493 |
Use `--with-x=<path>` if `configure` does not properly locate your X11 files. |
|
494 |
||
495 |
### ALSA |
|
496 |
||
497 |
ALSA, [Advanced Linux Sound Architecture](https://www.alsa-project.org/) is |
|
498 |
required on Linux. At least version 0.9.1 of ALSA is required. |
|
33030 | 499 |
|
45763 | 500 |
* To install on an apt-based Linux, try running `sudo apt-get install |
501 |
libasound2-dev`. |
|
502 |
* To install on an rpm-based Linux, try running `sudo yum install |
|
503 |
alsa-lib-devel`. |
|
504 |
||
505 |
Use `--with-alsa=<path>` if `configure` does not properly locate your ALSA |
|
506 |
files. |
|
507 |
||
508 |
### libffi |
|
509 |
||
510 |
libffi, the [Portable Foreign Function Interface Library]( |
|
511 |
http://sourceware.org/libffi) is required when building the Zero version of |
|
512 |
Hotspot. |
|
513 |
||
514 |
* To install on an apt-based Linux, try running `sudo apt-get install |
|
515 |
libffi-dev`. |
|
516 |
* To install on an rpm-based Linux, try running `sudo yum install |
|
517 |
libffi-devel`. |
|
518 |
||
519 |
Use `--with-libffi=<path>` if `configure` does not properly locate your libffi |
|
520 |
files. |
|
521 |
||
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
522 |
## Build Tools Requirements |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
523 |
|
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
524 |
### Autoconf |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
525 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
526 |
The JDK requires [Autoconf](http://www.gnu.org/software/autoconf) on all |
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
527 |
platforms. At least version 2.69 is required. |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
528 |
|
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
529 |
* To install on an apt-based Linux, try running `sudo apt-get install |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
530 |
autoconf`. |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
531 |
* To install on an rpm-based Linux, try running `sudo yum install |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
532 |
autoconf`. |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
533 |
* To install on macOS, try running `brew install autoconf`. |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
534 |
* To install on Windows, try running `<path to Cygwin setup>/setup-x86_64 -q |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
535 |
-P autoconf`. |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
536 |
|
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
537 |
If `configure` has problems locating your installation of autoconf, you can |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
538 |
specify it using the `AUTOCONF` environment variable, like this: |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
539 |
|
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
540 |
``` |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
541 |
AUTOCONF=<path to autoconf> configure ... |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
542 |
``` |
33030 | 543 |
|
45763 | 544 |
### GNU Make |
545 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
546 |
The JDK requires [GNU Make](http://www.gnu.org/software/make). No other flavors |
45763 | 547 |
of make are supported. |
33030 | 548 |
|
45763 | 549 |
At least version 3.81 of GNU Make must be used. For distributions supporting |
550 |
GNU Make 4.0 or above, we strongly recommend it. GNU Make 4.0 contains useful |
|
551 |
functionality to handle parallel building (supported by `--with-output-sync`) |
|
552 |
and speed and stability improvements. |
|
33030 | 553 |
|
45763 | 554 |
Note that `configure` locates and verifies a properly functioning version of |
555 |
`make` and stores the path to this `make` binary in the configuration. If you |
|
556 |
start a build using `make` on the command line, you will be using the version |
|
557 |
of make found first in your `PATH`, and not necessarily the one stored in the |
|
558 |
configuration. This initial make will be used as "bootstrap make", and in a |
|
559 |
second stage, the make located by `configure` will be called. Normally, this |
|
560 |
will present no issues, but if you have a very old `make`, or a non-GNU Make |
|
561 |
`make` in your path, this might cause issues. |
|
562 |
||
563 |
If you want to override the default make found by `configure`, use the `MAKE` |
|
564 |
configure variable, e.g. `configure MAKE=/opt/gnu/make`. |
|
565 |
||
566 |
On Solaris, it is common to call the GNU version of make by using `gmake`. |
|
567 |
||
568 |
### GNU Bash |
|
33030 | 569 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
570 |
The JDK requires [GNU Bash](http://www.gnu.org/software/bash). No other shells |
45763 | 571 |
are supported. |
572 |
||
573 |
At least version 3.2 of GNU Bash must be used. |
|
574 |
||
575 |
## Running Configure |
|
33030 | 576 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
577 |
To build the JDK, you need a "configuration", which consists of a directory |
45763 | 578 |
where to store the build output, coupled with information about the platform, |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
579 |
the specific build machine, and choices that affect how the JDK is built. |
33030 | 580 |
|
45763 | 581 |
The configuration is created by the `configure` script. The basic invocation of |
582 |
the `configure` script looks like this: |
|
33030 | 583 |
|
45763 | 584 |
``` |
585 |
bash configure [options] |
|
586 |
``` |
|
33030 | 587 |
|
45763 | 588 |
This will create an output directory containing the configuration and setup an |
589 |
area for the build result. This directory typically looks like |
|
590 |
`build/linux-x64-normal-server-release`, but the actual name depends on your |
|
591 |
specific configuration. (It can also be set directly, see [Using Multiple |
|
592 |
Configurations](#using-multiple-configurations)). This directory is referred to |
|
593 |
as `$BUILD` in this documentation. |
|
33030 | 594 |
|
595 |
`configure` will try to figure out what system you are running on and where all |
|
596 |
necessary build components are. If you have all prerequisites for building |
|
597 |
installed, it should find everything. If it fails to detect any component |
|
45763 | 598 |
automatically, it will exit and inform you about the problem. |
33030 | 599 |
|
45763 | 600 |
Some command line examples: |
33030 | 601 |
|
45763 | 602 |
* Create a 32-bit build for Windows with FreeType2 in `C:\freetype-i586`: |
603 |
``` |
|
604 |
bash configure --with-freetype=/cygdrive/c/freetype-i586 --with-target-bits=32 |
|
605 |
``` |
|
33030 | 606 |
|
45763 | 607 |
* Create a debug build with the `server` JVM and DTrace enabled: |
608 |
``` |
|
609 |
bash configure --enable-debug --with-jvm-variants=server --enable-dtrace |
|
610 |
``` |
|
33030 | 611 |
|
45763 | 612 |
### Common Configure Arguments |
33030 | 613 |
|
45763 | 614 |
Here follows some of the most common and important `configure` argument. |
33030 | 615 |
|
45763 | 616 |
To get up-to-date information on *all* available `configure` argument, please |
617 |
run: |
|
618 |
``` |
|
619 |
bash configure --help |
|
620 |
``` |
|
33030 | 621 |
|
45763 | 622 |
(Note that this help text also include general autoconf options, like |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
623 |
`--dvidir`, that is not relevant to the JDK. To list only JDK-specific |
45763 | 624 |
features, use `bash configure --help=short` instead.) |
625 |
||
626 |
#### Configure Arguments for Tailoring the Build |
|
33030 | 627 |
|
45763 | 628 |
* `--enable-debug` - Set the debug level to `fastdebug` (this is a shorthand |
629 |
for `--with-debug-level=fastdebug`) |
|
630 |
* `--with-debug-level=<level>` - Set the debug level, which can be `release`, |
|
631 |
`fastdebug`, `slowdebug` or `optimized`. Default is `release`. `optimized` |
|
632 |
is variant of `release` with additional Hotspot debug code. |
|
633 |
* `--with-native-debug-symbols=<method>` - Specify if and how native debug |
|
634 |
symbols should be built. Available methods are `none`, `internal`, |
|
635 |
`external`, `zipped`. Default behavior depends on platform. See [Native |
|
636 |
Debug Symbols](#native-debug-symbols) for more details. |
|
637 |
* `--with-version-string=<string>` - Specify the version string this build |
|
638 |
will be identified with. |
|
639 |
* `--with-version-<part>=<value>` - A group of options, where `<part>` can be |
|
640 |
any of `pre`, `opt`, `build`, `major`, `minor`, `security` or `patch`. Use |
|
641 |
these options to modify just the corresponding part of the version string |
|
642 |
from the default, or the value provided by `--with-version-string`. |
|
643 |
* `--with-jvm-variants=<variant>[,<variant>...]` - Build the specified variant |
|
644 |
(or variants) of Hotspot. Valid variants are: `server`, `client`, |
|
47687 | 645 |
`minimal`, `core`, `zero`, `custom`. Note that not all |
45763 | 646 |
variants are possible to combine in a single build. |
647 |
* `--with-jvm-features=<feature>[,<feature>...]` - Use the specified JVM |
|
648 |
features when building Hotspot. The list of features will be enabled on top |
|
649 |
of the default list. For the `custom` JVM variant, this default list is |
|
650 |
empty. A complete list of available JVM features can be found using `bash |
|
651 |
configure --help`. |
|
652 |
* `--with-target-bits=<bits>` - Create a target binary suitable for running |
|
653 |
on a `<bits>` platform. Use this to create 32-bit output on a 64-bit build |
|
654 |
platform, instead of doing a full cross-compile. (This is known as a |
|
655 |
*reduced* build.) |
|
33030 | 656 |
|
45763 | 657 |
#### Configure Arguments for Native Compilation |
33030 | 658 |
|
45763 | 659 |
* `--with-devkit=<path>` - Use this devkit for compilers, tools and resources |
660 |
* `--with-sysroot=<path>` - Use this directory as sysroot |
|
661 |
* `--with-extra-path=<path>[;<path>]` - Prepend these directories to the |
|
662 |
default path when searching for all kinds of binaries |
|
663 |
* `--with-toolchain-path=<path>[;<path>]` - Prepend these directories when |
|
664 |
searching for toolchain binaries (compilers etc) |
|
665 |
* `--with-extra-cflags=<flags>` - Append these flags when compiling JDK C |
|
666 |
files |
|
667 |
* `--with-extra-cxxflags=<flags>` - Append these flags when compiling JDK C++ |
|
668 |
files |
|
669 |
* `--with-extra-ldflags=<flags>` - Append these flags when linking JDK |
|
670 |
libraries |
|
33030 | 671 |
|
45763 | 672 |
#### Configure Arguments for External Dependencies |
44078
673240c54c2e
8176509: Use pandoc for converting build readme to html
ihse
parents:
41040
diff
changeset
|
673 |
|
45763 | 674 |
* `--with-boot-jdk=<path>` - Set the path to the [Boot JDK]( |
675 |
#boot-jdk-requirements) |
|
676 |
* `--with-freetype=<path>` - Set the path to [FreeType](#freetype) |
|
677 |
* `--with-cups=<path>` - Set the path to [CUPS](#cups) |
|
678 |
* `--with-x=<path>` - Set the path to [X11](#x11) |
|
679 |
* `--with-alsa=<path>` - Set the path to [ALSA](#alsa) |
|
680 |
* `--with-libffi=<path>` - Set the path to [libffi](#libffi) |
|
681 |
* `--with-jtreg=<path>` - Set the path to JTReg. See [Running Tests]( |
|
682 |
#running-tests) |
|
33030 | 683 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
684 |
Certain third-party libraries used by the JDK (libjpeg, giflib, libpng, lcms |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
685 |
and zlib) are included in the JDK repository. The default behavior of the |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
686 |
JDK build is to use this version of these libraries, but they might be |
45763 | 687 |
replaced by an external version. To do so, specify `system` as the `<source>` |
688 |
option in these arguments. (The default is `bundled`). |
|
33030 | 689 |
|
45763 | 690 |
* `--with-libjpeg=<source>` - Use the specified source for libjpeg |
691 |
* `--with-giflib=<source>` - Use the specified source for giflib |
|
692 |
* `--with-libpng=<source>` - Use the specified source for libpng |
|
693 |
* `--with-lcms=<source>` - Use the specified source for lcms |
|
694 |
* `--with-zlib=<source>` - Use the specified source for zlib |
|
33030 | 695 |
|
45763 | 696 |
On Linux, it is possible to select either static or dynamic linking of the C++ |
697 |
runtime. The default is static linking, with dynamic linking as fallback if the |
|
698 |
static library is not found. |
|
699 |
||
700 |
* `--with-stdc++lib=<method>` - Use the specified method (`static`, `dynamic` |
|
701 |
or `default`) for linking the C++ runtime. |
|
702 |
||
703 |
### Configure Control Variables |
|
33030 | 704 |
|
45763 | 705 |
It is possible to control certain aspects of `configure` by overriding the |
706 |
value of `configure` variables, either on the command line or in the |
|
707 |
environment. |
|
33030 | 708 |
|
45763 | 709 |
Normally, this is **not recommended**. If used improperly, it can lead to a |
710 |
broken configuration. Unless you're well versed in the build system, this is |
|
711 |
hard to use properly. Therefore, `configure` will print a warning if this is |
|
712 |
detected. |
|
33030 | 713 |
|
45763 | 714 |
However, there are a few `configure` variables, known as *control variables* |
715 |
that are supposed to be overriden on the command line. These are variables that |
|
716 |
describe the location of tools needed by the build, like `MAKE` or `GREP`. If |
|
717 |
any such variable is specified, `configure` will use that value instead of |
|
718 |
trying to autodetect the tool. For instance, `bash configure |
|
719 |
MAKE=/opt/gnumake4.0/bin/make`. |
|
33030 | 720 |
|
45763 | 721 |
If a configure argument exists, use that instead, e.g. use `--with-jtreg` |
722 |
instead of setting `JTREGEXE`. |
|
723 |
||
724 |
Also note that, despite what autoconf claims, setting `CFLAGS` will not |
|
725 |
accomplish anything. Instead use `--with-extra-cflags` (and similar for |
|
726 |
`cxxflags` and `ldflags`). |
|
727 |
||
728 |
## Running Make |
|
33030 | 729 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
730 |
When you have a proper configuration, all you need to do to build the JDK is to |
45763 | 731 |
run `make`. (But see the warning at [GNU Make](#gnu-make) about running the |
732 |
correct version of make.) |
|
33030 | 733 |
|
45763 | 734 |
When running `make` without any arguments, the default target is used, which is |
735 |
the same as running `make default` or `make jdk`. This will build a minimal (or |
|
736 |
roughly minimal) set of compiled output (known as an "exploded image") needed |
|
737 |
for a developer to actually execute the newly built JDK. The idea is that in an |
|
738 |
incremental development fashion, when doing a normal make, you should only |
|
739 |
spend time recompiling what's changed (making it purely incremental) and only |
|
740 |
do the work that's needed to actually run and test your code. |
|
741 |
||
742 |
The output of the exploded image resides in `$BUILD/jdk`. You can test the |
|
743 |
newly built JDK like this: `$BUILD/jdk/bin/java -version`. |
|
33030 | 744 |
|
45763 | 745 |
### Common Make Targets |
33030 | 746 |
|
45763 | 747 |
Apart from the default target, here are some common make targets: |
33030 | 748 |
|
45763 | 749 |
* `hotspot` - Build all of hotspot (but only hotspot) |
750 |
* `hotspot-<variant>` - Build just the specified jvm variant |
|
50490 | 751 |
* `images` or `product-images` - Build the JDK image |
45763 | 752 |
* `docs` or `docs-image` - Build the documentation image |
753 |
* `test-image` - Build the test image |
|
754 |
* `all` or `all-images` - Build all images (product, docs and test) |
|
755 |
* `bootcycle-images` - Build images twice, second time with newly built JDK |
|
756 |
(good for testing) |
|
757 |
* `clean` - Remove all files generated by make, but not those generated by |
|
758 |
configure |
|
759 |
* `dist-clean` - Remove all files, including configuration |
|
33030 | 760 |
|
45763 | 761 |
Run `make help` to get an up-to-date list of important make targets and make |
762 |
control variables. |
|
33030 | 763 |
|
45763 | 764 |
It is possible to build just a single module, a single phase, or a single phase |
765 |
of a single module, by creating make targets according to these followin |
|
766 |
patterns. A phase can be either of `gensrc`, `gendata`, `copy`, `java`, |
|
767 |
`launchers`, `libs` or `rmic`. See [Using Fine-Grained Make Targets]( |
|
768 |
#using-fine-grained-make-targets) for more details about this functionality. |
|
769 |
||
770 |
* `<phase>` - Build the specified phase and everything it depends on |
|
771 |
* `<module>` - Build the specified module and everything it depends on |
|
772 |
* `<module>-<phase>` - Compile the specified phase for the specified module |
|
773 |
and everything it depends on |
|
33030 | 774 |
|
45763 | 775 |
Similarly, it is possible to clean just a part of the build by creating make |
776 |
targets according to these patterns: |
|
33030 | 777 |
|
45763 | 778 |
* `clean-<outputdir>` - Remove the subdir in the output dir with the name |
779 |
* `clean-<phase>` - Remove all build results related to a certain build |
|
780 |
phase |
|
781 |
* `clean-<module>` - Remove all build results related to a certain module |
|
782 |
* `clean-<module>-<phase>` - Remove all build results related to a certain |
|
783 |
module and phase |
|
44078
673240c54c2e
8176509: Use pandoc for converting build readme to html
ihse
parents:
41040
diff
changeset
|
784 |
|
45763 | 785 |
### Make Control Variables |
786 |
||
787 |
It is possible to control `make` behavior by overriding the value of `make` |
|
788 |
variables, either on the command line or in the environment. |
|
33030 | 789 |
|
45763 | 790 |
Normally, this is **not recommended**. If used improperly, it can lead to a |
791 |
broken build. Unless you're well versed in the build system, this is hard to |
|
792 |
use properly. Therefore, `make` will print a warning if this is detected. |
|
33030 | 793 |
|
45763 | 794 |
However, there are a few `make` variables, known as *control variables* that |
795 |
are supposed to be overriden on the command line. These make up the "make time" |
|
796 |
configuration, as opposed to the "configure time" configuration. |
|
33030 | 797 |
|
45763 | 798 |
#### General Make Control Variables |
33030 | 799 |
|
45763 | 800 |
* `JOBS` - Specify the number of jobs to build with. See [Build |
801 |
Performance](#build-performance). |
|
802 |
* `LOG` - Specify the logging level and functionality. See [Checking the |
|
803 |
Build Log File](#checking-the-build-log-file) |
|
804 |
* `CONF` and `CONF_NAME` - Selecting the configuration(s) to use. See [Using |
|
805 |
Multiple Configurations](#using-multiple-configurations) |
|
33030 | 806 |
|
45763 | 807 |
#### Test Make Control Variables |
33030 | 808 |
|
45763 | 809 |
These make control variables only make sense when running tests. Please see |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
810 |
[Testing the JDK](testing.html) for details. |
33030 | 811 |
|
45763 | 812 |
* `TEST` |
813 |
* `TEST_JOBS` |
|
814 |
* `JTREG` |
|
815 |
* `GTEST` |
|
33030 | 816 |
|
45763 | 817 |
#### Advanced Make Control Variables |
33030 | 818 |
|
45763 | 819 |
These advanced make control variables can be potentially unsafe. See [Hints and |
820 |
Suggestions for Advanced Users](#hints-and-suggestions-for-advanced-users) and |
|
821 |
[Understanding the Build System](#understanding-the-build-system) for details. |
|
33030 | 822 |
|
45763 | 823 |
* `SPEC` |
824 |
* `CONF_CHECK` |
|
825 |
* `COMPARE_BUILD` |
|
826 |
* `JDK_FILTER` |
|
33030 | 827 |
|
45763 | 828 |
## Running Tests |
33030 | 829 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
830 |
Most of the JDK tests are using the [JTReg](http://openjdk.java.net/jtreg) |
45763 | 831 |
test framework. Make sure that your configuration knows where to find your |
832 |
installation of JTReg. If this is not picked up automatically, use the |
|
833 |
`--with-jtreg=<path to jtreg home>` option to point to the JTReg framework. |
|
834 |
Note that this option should point to the JTReg home, i.e. the top directory, |
|
835 |
containing `lib/jtreg.jar` etc. |
|
33030 | 836 |
|
50267
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49234
diff
changeset
|
837 |
The [Adoption Group](https://wiki.openjdk.java.net/display/Adoption) provides |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49234
diff
changeset
|
838 |
recent builds of jtreg [here]( |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49234
diff
changeset
|
839 |
https://adopt-openjdk.ci.cloudbees.com/job/jtreg/lastSuccessfulBuild/artifact). |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49234
diff
changeset
|
840 |
Download the latest `.tar.gz` file, unpack it, and point `--with-jtreg` to the |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49234
diff
changeset
|
841 |
`jtreg` directory that you just unpacked. |
1582de22e3a1
8198323: testing.md not updated for repository layout change
ihse
parents:
49234
diff
changeset
|
842 |
|
45763 | 843 |
To execute the most basic tests (tier 1), use: |
844 |
``` |
|
845 |
make run-test-tier1 |
|
846 |
``` |
|
33030 | 847 |
|
45763 | 848 |
For more details on how to run tests, please see the [Testing |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
849 |
the JDK](testing.html) document. |
33030 | 850 |
|
45763 | 851 |
## Cross-compiling |
852 |
||
853 |
Cross-compiling means using one platform (the *build* platform) to generate |
|
854 |
output that can ran on another platform (the *target* platform). |
|
33030 | 855 |
|
45763 | 856 |
The typical reason for cross-compiling is that the build is performed on a more |
857 |
powerful desktop computer, but the resulting binaries will be able to run on a |
|
858 |
different, typically low-performing system. Most of the complications that |
|
859 |
arise when building for embedded is due to this separation of *build* and |
|
860 |
*target* systems. |
|
33030 | 861 |
|
45763 | 862 |
This requires a more complex setup and build procedure. This section assumes |
863 |
you are familiar with cross-compiling in general, and will only deal with the |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
864 |
particularities of cross-compiling the JDK. If you are new to cross-compiling, |
45763 | 865 |
please see the [external links at Wikipedia]( |
866 |
https://en.wikipedia.org/wiki/Cross_compiler#External_links) for a good start |
|
867 |
on reading materials. |
|
33030 | 868 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
869 |
Cross-compiling the JDK requires you to be able to build both for the build |
45763 | 870 |
platform and for the target platform. The reason for the former is that we need |
871 |
to build and execute tools during the build process, both native tools and Java |
|
872 |
tools. |
|
33030 | 873 |
|
45763 | 874 |
If all you want to do is to compile a 32-bit version, for the same OS, on a |
875 |
64-bit machine, consider using `--with-target-bits=32` instead of doing a |
|
876 |
full-blown cross-compilation. (While this surely is possible, it's a lot more |
|
877 |
work and will take much longer to build.) |
|
33030 | 878 |
|
45763 | 879 |
### Boot JDK and Build JDK |
33030 | 880 |
|
45763 | 881 |
When cross-compiling, make sure you use a boot JDK that runs on the *build* |
882 |
system, and not on the *target* system. |
|
33030 | 883 |
|
45763 | 884 |
To be able to build, we need a "Build JDK", which is a JDK built from the |
885 |
current sources (that is, the same as the end result of the entire build |
|
886 |
process), but able to run on the *build* system, and not the *target* system. |
|
887 |
(In contrast, the Boot JDK should be from an older release, e.g. JDK 8 when |
|
888 |
building JDK 9.) |
|
33030 | 889 |
|
45763 | 890 |
The build process will create a minimal Build JDK for you, as part of building. |
891 |
To speed up the build, you can use `--with-build-jdk` to `configure` to point |
|
892 |
to a pre-built Build JDK. Please note that the build result is unpredictable, |
|
893 |
and can possibly break in subtle ways, if the Build JDK does not **exactly** |
|
894 |
match the current sources. |
|
895 |
||
896 |
### Specifying the Target Platform |
|
33030 | 897 |
|
45763 | 898 |
You *must* specify the target platform when cross-compiling. Doing so will also |
899 |
automatically turn the build into a cross-compiling mode. The simplest way to |
|
900 |
do this is to use the `--openjdk-target` argument, e.g. |
|
901 |
`--openjdk-target=arm-linux-gnueabihf`. or `--openjdk-target=aarch64-oe-linux`. |
|
902 |
This will automatically set the `--build`, `--host` and `--target` options for |
|
903 |
autoconf, which can otherwise be confusing. (In autoconf terminology, the |
|
904 |
"target" is known as "host", and "target" is used for building a Canadian |
|
905 |
cross-compiler.) |
|
906 |
||
907 |
### Toolchain Considerations |
|
33030 | 908 |
|
45763 | 909 |
You will need two copies of your toolchain, one which generates output that can |
910 |
run on the target system (the normal, or *target*, toolchain), and one that |
|
911 |
generates output that can run on the build system (the *build* toolchain). Note |
|
912 |
that cross-compiling is only supported for gcc at the time being. The gcc |
|
913 |
standard is to prefix cross-compiling toolchains with the target denominator. |
|
914 |
If you follow this standard, `configure` is likely to pick up the toolchain |
|
915 |
correctly. |
|
33030 | 916 |
|
45763 | 917 |
The *build* toolchain will be autodetected just the same way the normal |
918 |
*build*/*target* toolchain will be autodetected when not cross-compiling. If |
|
919 |
this is not what you want, or if the autodetection fails, you can specify a |
|
920 |
devkit containing the *build* toolchain using `--with-build-devkit` to |
|
921 |
`configure`, or by giving `BUILD_CC` and `BUILD_CXX` arguments. |
|
922 |
||
923 |
It is often helpful to locate the cross-compilation tools, headers and |
|
924 |
libraries in a separate directory, outside the normal path, and point out that |
|
925 |
directory to `configure`. Do this by setting the sysroot (`--with-sysroot`) and |
|
926 |
appending the directory when searching for cross-compilations tools |
|
927 |
(`--with-toolchain-path`). As a compact form, you can also use `--with-devkit` |
|
928 |
to point to a single directory, if it is correctly setup. (See `basics.m4` for |
|
929 |
details.) |
|
930 |
||
931 |
If you are unsure what toolchain and versions to use, these have been proved |
|
932 |
working at the time of writing: |
|
33030 | 933 |
|
45763 | 934 |
* [aarch64]( |
935 |
https://releases.linaro.org/archive/13.11/components/toolchain/binaries/gcc-linaro-aarch64-linux-gnu-4.8-2013.11_linux.tar.xz) |
|
936 |
* [arm 32-bit hardware floating point]( |
|
937 |
https://launchpad.net/linaro-toolchain-unsupported/trunk/2012.09/+download/gcc-linaro-arm-linux-gnueabihf-raspbian-2012.09-20120921_linux.tar.bz2) |
|
938 |
||
939 |
### Native Libraries |
|
940 |
||
941 |
You will need copies of external native libraries for the *target* system, |
|
942 |
present on the *build* machine while building. |
|
33030 | 943 |
|
45763 | 944 |
Take care not to replace the *build* system's version of these libraries by |
945 |
mistake, since that can render the *build* machine unusable. |
|
33030 | 946 |
|
45763 | 947 |
Make sure that the libraries you point to (ALSA, X11, etc) are for the |
948 |
*target*, not the *build*, platform. |
|
949 |
||
950 |
#### ALSA |
|
951 |
||
952 |
You will need alsa libraries suitable for your *target* system. For most cases, |
|
953 |
using Debian's pre-built libraries work fine. |
|
33030 | 954 |
|
45763 | 955 |
Note that alsa is needed even if you only want to build a headless JDK. |
956 |
||
957 |
* Go to [Debian Package Search](https://www.debian.org/distrib/packages) and |
|
958 |
search for the `libasound2` and `libasound2-dev` packages for your *target* |
|
959 |
system. Download them to /tmp. |
|
33030 | 960 |
|
45763 | 961 |
* Install the libraries into the cross-compilation toolchain. For instance: |
962 |
``` |
|
963 |
cd /tools/gcc-linaro-arm-linux-gnueabihf-raspbian-2012.09-20120921_linux/arm-linux-gnueabihf/libc |
|
964 |
dpkg-deb -x /tmp/libasound2_1.0.25-4_armhf.deb . |
|
965 |
dpkg-deb -x /tmp/libasound2-dev_1.0.25-4_armhf.deb . |
|
966 |
``` |
|
33030 | 967 |
|
45763 | 968 |
* If alsa is not properly detected by `configure`, you can point it out by |
969 |
`--with-alsa`. |
|
970 |
||
971 |
#### X11 |
|
972 |
||
973 |
You will need X11 libraries suitable for your *target* system. For most cases, |
|
974 |
using Debian's pre-built libraries work fine. |
|
975 |
||
976 |
Note that X11 is needed even if you only want to build a headless JDK. |
|
33030 | 977 |
|
45763 | 978 |
* Go to [Debian Package Search](https://www.debian.org/distrib/packages), |
979 |
search for the following packages for your *target* system, and download them |
|
980 |
to /tmp/target-x11: |
|
981 |
* libxi |
|
982 |
* libxi-dev |
|
983 |
* x11proto-core-dev |
|
984 |
* x11proto-input-dev |
|
985 |
* x11proto-kb-dev |
|
986 |
* x11proto-render-dev |
|
987 |
* x11proto-xext-dev |
|
988 |
* libice-dev |
|
989 |
* libxrender |
|
990 |
* libxrender-dev |
|
991 |
* libsm-dev |
|
992 |
* libxt-dev |
|
993 |
* libx11 |
|
994 |
* libx11-dev |
|
995 |
* libxtst |
|
996 |
* libxtst-dev |
|
997 |
* libxext |
|
998 |
* libxext-dev |
|
33030 | 999 |
|
45763 | 1000 |
* Install the libraries into the cross-compilation toolchain. For instance: |
1001 |
``` |
|
1002 |
cd /tools/gcc-linaro-arm-linux-gnueabihf-raspbian-2012.09-20120921_linux/arm-linux-gnueabihf/libc/usr |
|
1003 |
mkdir X11R6 |
|
1004 |
cd X11R6 |
|
1005 |
for deb in /tmp/target-x11/*.deb ; do dpkg-deb -x $deb . ; done |
|
1006 |
mv usr/* . |
|
1007 |
cd lib |
|
1008 |
cp arm-linux-gnueabihf/* . |
|
1009 |
``` |
|
33030 | 1010 |
|
45763 | 1011 |
You can ignore the following messages. These libraries are not needed to |
1012 |
successfully complete a full JDK build. |
|
1013 |
``` |
|
1014 |
cp: cannot stat `arm-linux-gnueabihf/libICE.so': No such file or directory |
|
1015 |
cp: cannot stat `arm-linux-gnueabihf/libSM.so': No such file or directory |
|
1016 |
cp: cannot stat `arm-linux-gnueabihf/libXt.so': No such file or directory |
|
1017 |
``` |
|
1018 |
||
1019 |
* If the X11 libraries are not properly detected by `configure`, you can |
|
1020 |
point them out by `--with-x`. |
|
1021 |
||
1022 |
### Building for ARM/aarch64 |
|
1023 |
||
1024 |
A common cross-compilation target is the ARM CPU. When building for ARM, it is |
|
1025 |
useful to set the ABI profile. A number of pre-defined ABI profiles are |
|
1026 |
available using `--with-abi-profile`: arm-vfp-sflt, arm-vfp-hflt, arm-sflt, |
|
1027 |
armv5-vfp-sflt, armv6-vfp-hflt. Note that soft-float ABIs are no longer |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1028 |
properly supported by the JDK. |
33030 | 1029 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1030 |
The JDK contains two different ports for the aarch64 platform, one is the |
45763 | 1031 |
original aarch64 port from the [AArch64 Port Project]( |
1032 |
http://openjdk.java.net/projects/aarch64-port) and one is a 64-bit version of |
|
1033 |
the Oracle contributed ARM port. When targeting aarch64, by the default the |
|
1034 |
original aarch64 port is used. To select the Oracle ARM 64 port, use |
|
1035 |
`--with-cpu-port=arm64`. Also set the corresponding value (`aarch64` or |
|
1036 |
`arm64`) to --with-abi-profile, to ensure a consistent build. |
|
1037 |
||
1038 |
### Verifying the Build |
|
33030 | 1039 |
|
45763 | 1040 |
The build will end up in a directory named like |
1041 |
`build/linux-arm-normal-server-release`. |
|
33030 | 1042 |
|
50490 | 1043 |
Inside this build output directory, the `images/jdk` will contain the newly |
1044 |
built JDK, for your *target* system. |
|
45763 | 1045 |
|
1046 |
Copy these folders to your *target* system. Then you can run e.g. |
|
1047 |
`images/jdk/bin/java -version`. |
|
1048 |
||
1049 |
## Build Performance |
|
33030 | 1050 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1051 |
Building the JDK requires a lot of horsepower. Some of the build tools can be |
33030 | 1052 |
adjusted to utilize more or less of resources such as parallel threads and |
1053 |
memory. The `configure` script analyzes your system and selects reasonable |
|
1054 |
values for such options based on your hardware. If you encounter resource |
|
1055 |
problems, such as out of memory conditions, you can modify the detected values |
|
1056 |
with: |
|
1057 |
||
45763 | 1058 |
* `--with-num-cores` -- number of cores in the build system, e.g. |
1059 |
`--with-num-cores=8`. |
|
1060 |
||
1061 |
* `--with-memory-size` -- memory (in MB) available in the build system, e.g. |
|
1062 |
`--with-memory-size=1024` |
|
33030 | 1063 |
|
45763 | 1064 |
You can also specify directly the number of build jobs to use with |
1065 |
`--with-jobs=N` to `configure`, or `JOBS=N` to `make`. Do not use the `-j` flag |
|
1066 |
to `make`. In most cases it will be ignored by the makefiles, but it can cause |
|
1067 |
problems for some make targets. |
|
33030 | 1068 |
|
45763 | 1069 |
It might also be necessary to specify the JVM arguments passed to the Boot JDK, |
1070 |
using e.g. `--with-boot-jdk-jvmargs="-Xmx8G"`. Doing so will override the |
|
1071 |
default JVM arguments passed to the Boot JDK. |
|
33030 | 1072 |
|
1073 |
At the end of a successful execution of `configure`, you will get a performance |
|
1074 |
summary, indicating how well the build will perform. Here you will also get |
|
1075 |
performance hints. If you want to build fast, pay attention to those! |
|
1076 |
||
45763 | 1077 |
If you want to tweak build performance, run with `make LOG=info` to get a build |
1078 |
time summary at the end of the build process. |
|
1079 |
||
1080 |
### Disk Speed |
|
1081 |
||
1082 |
If you are using network shares, e.g. via NFS, for your source code, make sure |
|
1083 |
the build directory is situated on local disk (e.g. by `ln -s |
|
1084 |
/localdisk/jdk-build $JDK-SHARE/build`). The performance penalty is extremely |
|
1085 |
high for building on a network share; close to unusable. |
|
1086 |
||
1087 |
Also, make sure that your build tools (including Boot JDK and toolchain) is |
|
1088 |
located on a local disk and not a network share. |
|
1089 |
||
1090 |
As has been stressed elsewhere, do use SSD for source code and build directory, |
|
1091 |
as well as (if possible) the build tools. |
|
1092 |
||
1093 |
### Virus Checking |
|
1094 |
||
1095 |
The use of virus checking software, especially on Windows, can *significantly* |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1096 |
slow down building of the JDK. If possible, turn off such software, or exclude |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1097 |
the directory containing the JDK source code from on-the-fly checking. |
45763 | 1098 |
|
1099 |
### Ccache |
|
33030 | 1100 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1101 |
The JDK build supports building with ccache when using gcc or clang. Using |
33030 | 1102 |
ccache can radically speed up compilation of native code if you often rebuild |
45763 | 1103 |
the same sources. Your milage may vary however, so we recommend evaluating it |
33030 | 1104 |
for yourself. To enable it, make sure it's on the path and configure with |
1105 |
`--enable-ccache`. |
|
1106 |
||
45763 | 1107 |
### Precompiled Headers |
1108 |
||
1109 |
By default, the Hotspot build uses preccompiled headers (PCH) on the toolchains |
|
1110 |
were it is properly supported (clang, gcc, and Visual Studio). Normally, this |
|
1111 |
speeds up the build process, but in some circumstances, it can actually slow |
|
1112 |
things down. |
|
33030 | 1113 |
|
45763 | 1114 |
You can experiment by disabling precompiled headers using |
1115 |
`--disable-precompiled-headers`. |
|
1116 |
||
1117 |
### Icecc / icecream |
|
33030 | 1118 |
|
45763 | 1119 |
[icecc/icecream](http://github.com/icecc/icecream) is a simple way to setup a |
1120 |
distributed compiler network. If you have multiple machines available for |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1121 |
building the JDK, you can drastically cut individual build times by utilizing |
45763 | 1122 |
it. |
33030 | 1123 |
|
45763 | 1124 |
To use, setup an icecc network, and install icecc on the build machine. Then |
1125 |
run `configure` using `--enable-icecc`. |
|
1126 |
||
1127 |
### Using sjavac |
|
1128 |
||
1129 |
To speed up Java compilation, especially incremental compilations, you can try |
|
1130 |
the experimental sjavac compiler by using `--enable-sjavac`. |
|
33030 | 1131 |
|
45763 | 1132 |
### Building the Right Target |
1133 |
||
1134 |
Selecting the proper target to build can have dramatic impact on build time. |
|
1135 |
For normal usage, `jdk` or the default target is just fine. You only need to |
|
1136 |
build `images` for shipping, or if your tests require it. |
|
1137 |
||
1138 |
See also [Using Fine-Grained Make Targets](#using-fine-grained-make-targets) on |
|
1139 |
how to build an even smaller subset of the product. |
|
1140 |
||
1141 |
## Troubleshooting |
|
33030 | 1142 |
|
45763 | 1143 |
If your build fails, it can sometimes be difficult to pinpoint the problem or |
1144 |
find a proper solution. |
|
1145 |
||
1146 |
### Locating the Source of the Error |
|
33030 | 1147 |
|
45763 | 1148 |
When a build fails, it can be hard to pinpoint the actual cause of the error. |
1149 |
In a typical build process, different parts of the product build in parallel, |
|
1150 |
with the output interlaced. |
|
1151 |
||
1152 |
#### Build Failure Summary |
|
1153 |
||
1154 |
To help you, the build system will print a failure summary at the end. It looks |
|
1155 |
like this: |
|
1156 |
||
1157 |
``` |
|
1158 |
ERROR: Build failed for target 'hotspot' in configuration 'linux-x64' (exit code 2) |
|
33030 | 1159 |
|
45763 | 1160 |
=== Output from failing command(s) repeated here === |
1161 |
* For target hotspot_variant-server_libjvm_objs_psMemoryPool.o: |
|
1162 |
/localhome/hg/jdk9-sandbox/hotspot/src/share/vm/services/psMemoryPool.cpp:1:1: error: 'failhere' does not name a type |
|
1163 |
... (rest of output omitted) |
|
33030 | 1164 |
|
45763 | 1165 |
* All command lines available in /localhome/hg/jdk9-sandbox/build/linux-x64/make-support/failure-logs. |
1166 |
=== End of repeated output === |
|
33030 | 1167 |
|
45763 | 1168 |
=== Make failed targets repeated here === |
1169 |
lib/CompileJvm.gmk:207: recipe for target '/localhome/hg/jdk9-sandbox/build/linux-x64/hotspot/variant-server/libjvm/objs/psMemoryPool.o' failed |
|
1170 |
make/Main.gmk:263: recipe for target 'hotspot-server-libs' failed |
|
1171 |
=== End of repeated output === |
|
33030 | 1172 |
|
45763 | 1173 |
Hint: Try searching the build log for the name of the first failed target. |
1174 |
Hint: If caused by a warning, try configure --disable-warnings-as-errors. |
|
1175 |
``` |
|
33030 | 1176 |
|
45763 | 1177 |
Let's break it down! First, the selected configuration, and the top-level |
1178 |
target you entered on the command line that caused the failure is printed. |
|
33030 | 1179 |
|
45763 | 1180 |
Then, between the `Output from failing command(s) repeated here` and `End of |
1181 |
repeated output` the first lines of output (stdout and stderr) from the actual |
|
1182 |
failing command is repeated. In most cases, this is the error message that |
|
1183 |
caused the build to fail. If multiple commands were failing (this can happen in |
|
1184 |
a parallel build), output from all failed commands will be printed here. |
|
1185 |
||
1186 |
The path to the `failure-logs` directory is printed. In this file you will find |
|
1187 |
a `<target>.log` file that contains the output from this command in its |
|
1188 |
entirety, and also a `<target>.cmd`, which contain the complete command line |
|
1189 |
used for running this command. You can re-run the failing command by executing |
|
1190 |
`. <path to failure-logs>/<target>.cmd` in your shell. |
|
33030 | 1191 |
|
45763 | 1192 |
Another way to trace the failure is to follow the chain of make targets, from |
1193 |
top-level targets to individual file targets. Between `Make failed targets |
|
1194 |
repeated here` and `End of repeated output` the output from make showing this |
|
1195 |
chain is repeated. The first failed recipe will typically contain the full path |
|
1196 |
to the file in question that failed to compile. Following lines will show a |
|
1197 |
trace of make targets why we ended up trying to compile that file. |
|
1198 |
||
1199 |
Finally, some hints are given on how to locate the error in the complete log. |
|
1200 |
In this example, we would try searching the log file for "`psMemoryPool.o`". |
|
1201 |
Another way to quickly locate make errors in the log is to search for "`] |
|
1202 |
Error`" or "`***`". |
|
33030 | 1203 |
|
45763 | 1204 |
Note that the build failure summary will only help you if the issue was a |
1205 |
compilation failure or similar. If the problem is more esoteric, or is due to |
|
1206 |
errors in the build machinery, you will likely get empty output logs, and `No |
|
1207 |
indication of failed target found` instead of the make target chain. |
|
1208 |
||
1209 |
#### Checking the Build Log File |
|
1210 |
||
1211 |
The output (stdout and stderr) from the latest build is always stored in |
|
1212 |
`$BUILD/build.log`. The previous build log is stored as `build.log.old`. This |
|
1213 |
means that it is not necessary to redirect the build output yourself if you |
|
1214 |
want to process it. |
|
33030 | 1215 |
|
45763 | 1216 |
You can increase the verbosity of the log file, by the `LOG` control variable |
1217 |
to `make`. If you want to see the command lines used in compilations, use |
|
1218 |
`LOG=cmdlines`. To increase the general verbosity, use `LOG=info`, `LOG=debug` |
|
1219 |
or `LOG=trace`. Both of these can be combined with `cmdlines`, e.g. |
|
1220 |
`LOG=info,cmdlines`. The `debug` log level will show most shell commands |
|
1221 |
executed by make, and `trace` will show all. Beware that both these log levels |
|
1222 |
will produce a massive build log! |
|
1223 |
||
1224 |
### Fixing Unexpected Build Failures |
|
33030 | 1225 |
|
45763 | 1226 |
Most of the time, the build will fail due to incorrect changes in the source |
1227 |
code. |
|
1228 |
||
1229 |
Sometimes the build can fail with no apparent changes that have caused the |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1230 |
failure. If this is the first time you are building the JDK on this particular |
45763 | 1231 |
computer, and the build fails, the problem is likely with your build |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1232 |
environment. But even if you have previously built the JDK with success, and it |
45763 | 1233 |
now fails, your build environment might have changed (perhaps due to OS |
1234 |
upgrades or similar). But most likely, such failures are due to problems with |
|
1235 |
the incremental rebuild. |
|
1236 |
||
1237 |
#### Problems with the Build Environment |
|
33030 | 1238 |
|
45763 | 1239 |
Make sure your configuration is correct. Re-run `configure`, and look for any |
1240 |
warnings. Warnings that appear in the middle of the `configure` output is also |
|
1241 |
repeated at the end, after the summary. The entire log is stored in |
|
1242 |
`$BUILD/configure.log`. |
|
33030 | 1243 |
|
45763 | 1244 |
Verify that the summary at the end looks correct. Are you indeed using the Boot |
1245 |
JDK and native toolchain that you expect? |
|
33030 | 1246 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1247 |
By default, the JDK has a strict approach where warnings from the compiler is |
45763 | 1248 |
considered errors which fail the build. For very new or very old compiler |
1249 |
versions, this can trigger new classes of warnings, which thus fails the build. |
|
1250 |
Run `configure` with `--disable-warnings-as-errors` to turn of this behavior. |
|
1251 |
(The warnings will still show, but not make the build fail.) |
|
33030 | 1252 |
|
45763 | 1253 |
#### Problems with Incremental Rebuilds |
33030 | 1254 |
|
45763 | 1255 |
Incremental rebuilds mean that when you modify part of the product, only the |
1256 |
affected parts get rebuilt. While this works great in most cases, and |
|
1257 |
significantly speed up the development process, from time to time complex |
|
1258 |
interdependencies will result in an incorrect build result. This is the most |
|
1259 |
common cause for unexpected build problems, together with inconsistencies |
|
1260 |
between the different Mercurial repositories in the forest. |
|
33030 | 1261 |
|
45763 | 1262 |
Here are a suggested list of things to try if you are having unexpected build |
1263 |
problems. Each step requires more time than the one before, so try them in |
|
1264 |
order. Most issues will be solved at step 1 or 2. |
|
1265 |
||
1266 |
1. Make sure your forest is up-to-date |
|
1267 |
||
1268 |
Run `bash get_source.sh` to make sure you have the latest version of all |
|
1269 |
repositories. |
|
1270 |
||
1271 |
2. Clean build results |
|
1272 |
||
1273 |
The simplest way to fix incremental rebuild issues is to run `make clean`. |
|
1274 |
This will remove all build results, but not the configuration or any build |
|
1275 |
system support artifacts. In most cases, this will solve build errors |
|
1276 |
resulting from incremental build mismatches. |
|
33030 | 1277 |
|
45763 | 1278 |
3. Completely clean the build directory. |
1279 |
||
1280 |
If this does not work, the next step is to run `make dist-clean`, or |
|
1281 |
removing the build output directory (`$BUILD`). This will clean all |
|
1282 |
generated output, including your configuration. You will need to re-run |
|
1283 |
`configure` after this step. A good idea is to run `make |
|
1284 |
print-configuration` before running `make dist-clean`, as this will print |
|
1285 |
your current `configure` command line. Here's a way to do this: |
|
33030 | 1286 |
|
45763 | 1287 |
``` |
1288 |
make print-configuration > current-configuration |
|
1289 |
make dist-clean |
|
1290 |
bash configure $(cat current-configuration) |
|
1291 |
make |
|
1292 |
``` |
|
33030 | 1293 |
|
45763 | 1294 |
4. Re-clone the Mercurial forest |
33030 | 1295 |
|
45763 | 1296 |
Sometimes the Mercurial repositories themselves gets in a state that causes |
1297 |
the product to be un-buildable. In such a case, the simplest solution is |
|
1298 |
often the "sledgehammer approach": delete the entire forest, and re-clone |
|
1299 |
it. If you have local changes, save them first to a different location |
|
1300 |
using `hg export`. |
|
1301 |
||
1302 |
### Specific Build Issues |
|
1303 |
||
1304 |
#### Clock Skew |
|
33030 | 1305 |
|
45763 | 1306 |
If you get an error message like this: |
1307 |
``` |
|
1308 |
File 'xxx' has modification time in the future. |
|
1309 |
Clock skew detected. Your build may be incomplete. |
|
1310 |
``` |
|
1311 |
then the clock on your build machine is out of sync with the timestamps on the |
|
1312 |
source files. Other errors, apparently unrelated but in fact caused by the |
|
1313 |
clock skew, can occur along with the clock skew warnings. These secondary |
|
1314 |
errors may tend to obscure the fact that the true root cause of the problem is |
|
1315 |
an out-of-sync clock. |
|
33030 | 1316 |
|
45763 | 1317 |
If you see these warnings, reset the clock on the build machine, run `make |
1318 |
clean` and restart the build. |
|
1319 |
||
1320 |
#### Out of Memory Errors |
|
1321 |
||
1322 |
On Solaris, you might get an error message like this: |
|
1323 |
``` |
|
1324 |
Trouble writing out table to disk |
|
1325 |
``` |
|
1326 |
To solve this, increase the amount of swap space on your build machine. |
|
33030 | 1327 |
|
45763 | 1328 |
On Windows, you might get error messages like this: |
1329 |
``` |
|
1330 |
fatal error - couldn't allocate heap |
|
1331 |
cannot create ... Permission denied |
|
1332 |
spawn failed |
|
1333 |
``` |
|
1334 |
This can be a sign of a Cygwin problem. See the information about solving |
|
1335 |
problems in the [Cygwin](#cygwin) section. Rebooting the computer might help |
|
1336 |
temporarily. |
|
33030 | 1337 |
|
45763 | 1338 |
### Getting Help |
33030 | 1339 |
|
45763 | 1340 |
If none of the suggestions in this document helps you, or if you find what you |
1341 |
believe is a bug in the build system, please contact the Build Group by sending |
|
1342 |
a mail to [build-dev@openjdk.java.net](mailto:build-dev@openjdk.java.net). |
|
1343 |
Please include the relevant parts of the configure and/or build log. |
|
1344 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1345 |
If you need general help or advice about developing for the JDK, you can also |
45763 | 1346 |
contact the Adoption Group. See the section on [Contributing to OpenJDK]( |
1347 |
#contributing-to-openjdk) for more information. |
|
33030 | 1348 |
|
45763 | 1349 |
## Hints and Suggestions for Advanced Users |
1350 |
||
1351 |
### Setting Up a Forest for Pushing Changes (defpath) |
|
1352 |
||
1353 |
To help you prepare a proper push path for a Mercurial repository, there exists |
|
1354 |
a useful tool known as [defpath]( |
|
1355 |
http://openjdk.java.net/projects/code-tools/defpath). It will help you setup a |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1356 |
proper push path for pushing changes to the JDK. |
33030 | 1357 |
|
45763 | 1358 |
Install the extension by cloning |
1359 |
`http://hg.openjdk.java.net/code-tools/defpath` and updating your `.hgrc` file. |
|
1360 |
Here's one way to do this: |
|
33030 | 1361 |
|
45763 | 1362 |
``` |
1363 |
cd ~ |
|
1364 |
mkdir hg-ext |
|
1365 |
cd hg-ext |
|
1366 |
hg clone http://hg.openjdk.java.net/code-tools/defpath |
|
1367 |
cat << EOT >> ~/.hgrc |
|
1368 |
[extensions] |
|
1369 |
defpath=~/hg-ext/defpath/defpath.py |
|
1370 |
EOT |
|
1371 |
``` |
|
33030 | 1372 |
|
45763 | 1373 |
You can now setup a proper push path using: |
1374 |
``` |
|
1375 |
hg defpath -d -u <your OpenJDK username> |
|
1376 |
``` |
|
33030 | 1377 |
|
45763 | 1378 |
If you also have the `trees` extension installed in Mercurial, you will |
1379 |
automatically get a `tdefpath` command, which is even more useful. By running |
|
1380 |
`hg tdefpath -du <username>` in the top repository of your forest, all repos |
|
1381 |
will get setup automatically. This is the recommended usage. |
|
1382 |
||
1383 |
### Bash Completion |
|
1384 |
||
1385 |
The `configure` and `make` commands tries to play nice with bash command-line |
|
1386 |
completion (using `<tab>` or `<tab><tab>`). To use this functionality, make |
|
1387 |
sure you enable completion in your `~/.bashrc` (see instructions for bash in |
|
1388 |
your operating system). |
|
1389 |
||
1390 |
Make completion will work out of the box, and will complete valid make targets. |
|
1391 |
For instance, typing `make jdk-i<tab>` will complete to `make jdk-image`. |
|
1392 |
||
1393 |
The `configure` script can get completion for options, but for this to work you |
|
1394 |
need to help `bash` on the way. The standard way of running the script, `bash |
|
1395 |
configure`, will not be understood by bash completion. You need `configure` to |
|
1396 |
be the command to run. One way to achieve this is to add a simple helper script |
|
1397 |
to your path: |
|
33030 | 1398 |
|
45763 | 1399 |
``` |
1400 |
cat << EOT > /tmp/configure |
|
1401 |
#!/bin/bash |
|
1402 |
if [ \$(pwd) = \$(cd \$(dirname \$0); pwd) ] ; then |
|
1403 |
echo >&2 "Abort: Trying to call configure helper recursively" |
|
1404 |
exit 1 |
|
1405 |
fi |
|
33030 | 1406 |
|
45763 | 1407 |
bash \$PWD/configure "\$@" |
1408 |
EOT |
|
1409 |
chmod +x /tmp/configure |
|
1410 |
sudo mv /tmp/configure /usr/local/bin |
|
1411 |
``` |
|
1412 |
||
1413 |
Now `configure --en<tab>-dt<tab>` will result in `configure --enable-dtrace`. |
|
33030 | 1414 |
|
45763 | 1415 |
### Using Multiple Configurations |
33030 | 1416 |
|
45763 | 1417 |
You can have multiple configurations for a single source forest. When you |
1418 |
create a new configuration, run `configure --with-conf-name=<name>` to create a |
|
1419 |
configuration with the name `<name>`. Alternatively, you can create a directory |
|
1420 |
under `build` and run `configure` from there, e.g. `mkdir build/<name> && cd |
|
1421 |
build/<name> && bash ../../configure`. |
|
33030 | 1422 |
|
45763 | 1423 |
Then you can build that configuration using `make CONF_NAME=<name>` or `make |
1424 |
CONF=<pattern>`, where `<pattern>` is a substring matching one or several |
|
1425 |
configurations, e.g. `CONF=debug`. The special empty pattern (`CONF=`) will |
|
1426 |
match *all* available configuration, so `make CONF= hotspot` will build the |
|
1427 |
`hotspot` target for all configurations. Alternatively, you can execute `make` |
|
1428 |
in the configuration directory, e.g. `cd build/<name> && make`. |
|
1429 |
||
1430 |
### Handling Reconfigurations |
|
33030 | 1431 |
|
45763 | 1432 |
If you update the forest and part of the configure script has changed, the |
1433 |
build system will force you to re-run `configure`. |
|
1434 |
||
1435 |
Most of the time, you will be fine by running `configure` again with the same |
|
1436 |
arguments as the last time, which can easily be performed by `make |
|
1437 |
reconfigure`. To simplify this, you can use the `CONF_CHECK` make control |
|
1438 |
variable, either as `make CONF_CHECK=auto`, or by setting an environment |
|
1439 |
variable. For instance, if you add `export CONF_CHECK=auto` to your `.bashrc` |
|
1440 |
file, `make` will always run `reconfigure` automatically whenever the configure |
|
1441 |
script has changed. |
|
33030 | 1442 |
|
45763 | 1443 |
You can also use `CONF_CHECK=ignore` to skip the check for a needed configure |
1444 |
update. This might speed up the build, but comes at the risk of an incorrect |
|
1445 |
build result. This is only recommended if you know what you're doing. |
|
1446 |
||
1447 |
From time to time, you will also need to modify the command line to `configure` |
|
1448 |
due to changes. Use `make print-configure` to show the command line used for |
|
1449 |
your current configuration. |
|
1450 |
||
1451 |
### Using Fine-Grained Make Targets |
|
33030 | 1452 |
|
45763 | 1453 |
The default behavior for make is to create consistent and correct output, at |
1454 |
the expense of build speed, if necessary. |
|
33030 | 1455 |
|
45763 | 1456 |
If you are prepared to take some risk of an incorrect build, and know enough of |
1457 |
the system to understand how things build and interact, you can speed up the |
|
1458 |
build process considerably by instructing make to only build a portion of the |
|
1459 |
product. |
|
1460 |
||
1461 |
#### Building Individual Modules |
|
33030 | 1462 |
|
45763 | 1463 |
The safe way to use fine-grained make targets is to use the module specific |
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1464 |
make targets. All source code in the JDK is organized so it belongs to a |
50586
4bba6dea2e73
8200867: Remove references to "jdk 9" in build system
ihse
parents:
50490
diff
changeset
|
1465 |
module, e.g. `java.base` or `jdk.jdwp.agent`. You can build only a specific |
4bba6dea2e73
8200867: Remove references to "jdk 9" in build system
ihse
parents:
50490
diff
changeset
|
1466 |
module, by giving it as make target: `make jdk.jdwp.agent`. If the specified |
4bba6dea2e73
8200867: Remove references to "jdk 9" in build system
ihse
parents:
50490
diff
changeset
|
1467 |
module depends on other modules (e.g. `java.base`), those modules will be built |
4bba6dea2e73
8200867: Remove references to "jdk 9" in build system
ihse
parents:
50490
diff
changeset
|
1468 |
first. |
33030 | 1469 |
|
45763 | 1470 |
You can also specify a set of modules, just as you can always specify a set of |
1471 |
make targets: `make jdk.crypto.cryptoki jdk.crypto.ec jdk.crypto.mscapi |
|
1472 |
jdk.crypto.ucrypto` |
|
33030 | 1473 |
|
45763 | 1474 |
#### Building Individual Module Phases |
1475 |
||
1476 |
The build process for each module is divided into separate phases. Not all |
|
1477 |
modules need all phases. Which are needed depends on what kind of source code |
|
1478 |
and other artifact the module consists of. The phases are: |
|
33030 | 1479 |
|
45763 | 1480 |
* `gensrc` (Generate source code to compile) |
1481 |
* `gendata` (Generate non-source code artifacts) |
|
1482 |
* `copy` (Copy resource artifacts) |
|
1483 |
* `java` (Compile Java code) |
|
1484 |
* `launchers` (Compile native executables) |
|
1485 |
* `libs` (Compile native libraries) |
|
1486 |
* `rmic` (Run the `rmic` tool) |
|
1487 |
||
1488 |
You can build only a single phase for a module by using the notation |
|
1489 |
`$MODULE-$PHASE`. For instance, to build the `gensrc` phase for `java.base`, |
|
1490 |
use `make java.base-gensrc`. |
|
33030 | 1491 |
|
45763 | 1492 |
Note that some phases may depend on others, e.g. `java` depends on `gensrc` (if |
1493 |
present). Make will build all needed prerequisites before building the |
|
1494 |
requested phase. |
|
1495 |
||
1496 |
#### Skipping the Dependency Check |
|
33030 | 1497 |
|
45763 | 1498 |
When using an iterative development style with frequent quick rebuilds, the |
1499 |
dependency check made by make can take up a significant portion of the time |
|
1500 |
spent on the rebuild. In such cases, it can be useful to bypass the dependency |
|
1501 |
check in make. |
|
1502 |
||
1503 |
> **Note that if used incorrectly, this can lead to a broken build!** |
|
33030 | 1504 |
|
45763 | 1505 |
To achieve this, append `-only` to the build target. For instance, `make |
1506 |
jdk.jdwp.agent-java-only` will *only* build the `java` phase of the |
|
1507 |
`jdk.jdwp.agent` module. If the required dependencies are not present, the |
|
1508 |
build can fail. On the other hand, the execution time measures in milliseconds. |
|
33030 | 1509 |
|
45763 | 1510 |
A useful pattern is to build the first time normally (e.g. `make |
1511 |
jdk.jdwp.agent`) and then on subsequent builds, use the `-only` make target. |
|
1512 |
||
1513 |
#### Rebuilding Part of java.base (JDK\_FILTER) |
|
1514 |
||
1515 |
If you are modifying files in `java.base`, which is the by far largest module |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1516 |
in the JDK, then you need to rebuild all those files whenever a single file has |
45763 | 1517 |
changed. (This inefficiency will hopefully be addressed in JDK 10.) |
44078
673240c54c2e
8176509: Use pandoc for converting build readme to html
ihse
parents:
41040
diff
changeset
|
1518 |
|
45763 | 1519 |
As a hack, you can use the make control variable `JDK_FILTER` to specify a |
1520 |
pattern that will be used to limit the set of files being recompiled. For |
|
1521 |
instance, `make java.base JDK_FILTER=javax/crypto` (or, to combine methods, |
|
1522 |
`make java.base-java-only JDK_FILTER=javax/crypto`) will limit the compilation |
|
1523 |
to files in the `javax.crypto` package. |
|
33030 | 1524 |
|
45763 | 1525 |
### Learn About Mercurial |
1526 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1527 |
To become an efficient JDK developer, it is recommended that you invest in |
45763 | 1528 |
learning Mercurial properly. Here are some links that can get you started: |
33030 | 1529 |
|
45763 | 1530 |
* [Mercurial for git users](http://www.mercurial-scm.org/wiki/GitConcepts) |
1531 |
* [The official Mercurial tutorial](http://www.mercurial-scm.org/wiki/Tutorial) |
|
1532 |
* [hg init](http://hginit.com/) |
|
1533 |
* [Mercurial: The Definitive Guide](http://hgbook.red-bean.com/read/) |
|
33030 | 1534 |
|
45763 | 1535 |
## Understanding the Build System |
1536 |
||
1537 |
This section will give you a more technical description on the details of the |
|
1538 |
build system. |
|
1539 |
||
1540 |
### Configurations |
|
33030 | 1541 |
|
45763 | 1542 |
The build system expects to find one or more configuration. These are |
1543 |
technically defined by the `spec.gmk` in a subdirectory to the `build` |
|
1544 |
subdirectory. The `spec.gmk` file is generated by `configure`, and contains in |
|
1545 |
principle the configuration (directly or by files included by `spec.gmk`). |
|
33030 | 1546 |
|
45763 | 1547 |
You can, in fact, select a configuration to build by pointing to the `spec.gmk` |
1548 |
file with the `SPEC` make control variable, e.g. `make SPEC=$BUILD/spec.gmk`. |
|
1549 |
While this is not the recommended way to call `make` as a user, it is what is |
|
1550 |
used under the hood by the build system. |
|
33030 | 1551 |
|
45763 | 1552 |
### Build Output Structure |
1553 |
||
1554 |
The build output for a configuration will end up in `build/<configuration |
|
1555 |
name>`, which we refer to as `$BUILD` in this document. The `$BUILD` directory |
|
1556 |
contains the following important directories: |
|
33030 | 1557 |
|
45763 | 1558 |
``` |
1559 |
buildtools/ |
|
1560 |
configure-support/ |
|
1561 |
hotspot/ |
|
1562 |
images/ |
|
1563 |
jdk/ |
|
1564 |
make-support/ |
|
1565 |
support/ |
|
1566 |
test-results/ |
|
1567 |
test-support/ |
|
1568 |
``` |
|
1569 |
||
1570 |
This is what they are used for: |
|
33030 | 1571 |
|
45763 | 1572 |
* `images`: This is the directory were the output of the `*-image` make |
1573 |
targets end up. For instance, `make jdk-image` ends up in `images/jdk`. |
|
1574 |
||
1575 |
* `jdk`: This is the "exploded image". After `make jdk`, you will be able to |
|
1576 |
launch the newly built JDK by running `$BUILD/jdk/bin/java`. |
|
33030 | 1577 |
|
45763 | 1578 |
* `test-results`: This directory contains the results from running tests. |
33030 | 1579 |
|
45763 | 1580 |
* `support`: This is an area for intermediate files needed during the build, |
1581 |
e.g. generated source code, object files and class files. Some noteworthy |
|
1582 |
directories in `support` is `gensrc`, which contains the generated source |
|
1583 |
code, and the `modules_*` directories, which contains the files in a |
|
1584 |
per-module hierarchy that will later be collapsed into the `jdk` directory |
|
1585 |
of the exploded image. |
|
33030 | 1586 |
|
45763 | 1587 |
* `buildtools`: This is an area for tools compiled for the build platform |
1588 |
that are used during the rest of the build. |
|
1589 |
||
1590 |
* `hotspot`: This is an area for intermediate files needed when building |
|
1591 |
hotspot. |
|
1592 |
||
1593 |
* `configure-support`, `make-support` and `test-support`: These directories |
|
1594 |
contain files that are needed by the build system for `configure`, `make` |
|
1595 |
and for running tests. |
|
33030 | 1596 |
|
45763 | 1597 |
### Fixpath |
1598 |
||
1599 |
Windows path typically look like `C:\User\foo`, while Unix paths look like |
|
1600 |
`/home/foo`. Tools with roots from Unix often experience issues related to this |
|
1601 |
mismatch when running on Windows. |
|
1602 |
||
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1603 |
In the JDK build, we always use Unix paths internally, and only just before |
45763 | 1604 |
calling a tool that does not understand Unix paths do we convert them to |
1605 |
Windows paths. |
|
33030 | 1606 |
|
45763 | 1607 |
This conversion is done by the `fixpath` tool, which is a small wrapper that |
1608 |
modifies unix-style paths to Windows-style paths in command lines. Fixpath is |
|
1609 |
compiled automatically by `configure`. |
|
33030 | 1610 |
|
45763 | 1611 |
### Native Debug Symbols |
33030 | 1612 |
|
45763 | 1613 |
Native libraries and executables can have debug symbol (and other debug |
1614 |
information) associated with them. How this works is very much platform |
|
1615 |
dependent, but a common problem is that debug symbol information takes a lot of |
|
1616 |
disk space, but is rarely needed by the end user. |
|
33030 | 1617 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1618 |
The JDK supports different methods on how to handle debug symbols. The |
45763 | 1619 |
method used is selected by `--with-native-debug-symbols`, and available methods |
1620 |
are `none`, `internal`, `external`, `zipped`. |
|
33030 | 1621 |
|
45763 | 1622 |
* `none` means that no debug symbols will be generated during the build. |
1623 |
||
1624 |
* `internal` means that debug symbols will be generated during the build, and |
|
1625 |
they will be stored in the generated binary. |
|
33030 | 1626 |
|
45763 | 1627 |
* `external` means that debug symbols will be generated during the build, and |
1628 |
after the compilation, they will be moved into a separate `.debuginfo` file. |
|
1629 |
(This was previously known as FDS, Full Debug Symbols). |
|
1630 |
||
1631 |
* `zipped` is like `external`, but the .debuginfo file will also be zipped |
|
1632 |
into a `.diz` file. |
|
33030 | 1633 |
|
45763 | 1634 |
When building for distribution, `zipped` is a good solution. Binaries built |
1635 |
with `internal` is suitable for use by developers, since they facilitate |
|
1636 |
debugging, but should be stripped before distributed to end users. |
|
33030 | 1637 |
|
45763 | 1638 |
### Autoconf Details |
1639 |
||
1640 |
The `configure` script is based on the autoconf framework, but in some details |
|
1641 |
deviate from a normal autoconf `configure` script. |
|
33030 | 1642 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1643 |
The `configure` script in the top level directory of the JDK is just a thin |
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
1644 |
wrapper that calls `make/autoconf/configure`. This in turn will run `autoconf` |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
1645 |
to create the runnable (generated) configure script, as |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
1646 |
`.build/generated-configure.sh`. Apart from being responsible for the |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
1647 |
generation of the runnable script, the `configure` script also provides |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
1648 |
functionality that is not easily expressed in the normal Autoconf framework. As |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
1649 |
part of this functionality, the generated script is called. |
33030 | 1650 |
|
45763 | 1651 |
The build system will detect if the Autoconf source files have changed, and |
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
1652 |
will trigger a regeneration of the generated script if needed. You can also |
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
1653 |
manually request such an update by `bash configure autogen`. |
33030 | 1654 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1655 |
In previous versions of the JDK, the generated script was checked in at |
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
1656 |
`make/autoconf/generated-configure.sh`. This is no longer the case. |
33030 | 1657 |
|
45763 | 1658 |
### Developing the Build System Itself |
33030 | 1659 |
|
45763 | 1660 |
This section contains a few remarks about how to develop for the build system |
1661 |
itself. It is not relevant if you are only making changes in the product source |
|
1662 |
code. |
|
33030 | 1663 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1664 |
While technically using `make`, the make source files of the JDK does not |
45763 | 1665 |
resemble most other Makefiles. Instead of listing specific targets and actions |
1666 |
(perhaps using patterns), the basic modus operandi is to call a high-level |
|
1667 |
function (or properly, macro) from the API in `make/common`. For instance, to |
|
1668 |
compile all classes in the `jdk.internal.foo` package in the `jdk.foo` module, |
|
1669 |
a call like this would be made: |
|
33030 | 1670 |
|
45763 | 1671 |
``` |
1672 |
$(eval $(call SetupJavaCompilation, BUILD_FOO_CLASSES, \ |
|
1673 |
SETUP := GENERATE_OLDBYTECODE, \ |
|
47219 | 1674 |
SRC := $(TOPDIR)/src/jkd.foo/share/classes, \ |
45763 | 1675 |
INCLUDES := jdk/internal/foo, \ |
1676 |
BIN := $(SUPPORT_OUTPUTDIR)/foo_classes, \ |
|
1677 |
)) |
|
1678 |
``` |
|
33030 | 1679 |
|
45763 | 1680 |
By encapsulating and expressing the high-level knowledge of *what* should be |
1681 |
done, rather than *how* it should be done (as is normal in Makefiles), we can |
|
1682 |
build a much more powerful and flexible build system. |
|
1683 |
||
1684 |
Correct dependency tracking is paramount. Sloppy dependency tracking will lead |
|
1685 |
to improper parallelization, or worse, race conditions. |
|
33030 | 1686 |
|
45763 | 1687 |
To test for/debug race conditions, try running `make JOBS=1` and `make |
1688 |
JOBS=100` and see if it makes any difference. (It shouldn't). |
|
1689 |
||
1690 |
To compare the output of two different builds and see if, and how, they differ, |
|
1691 |
run `$BUILD1/compare.sh -o $BUILD2`, where `$BUILD1` and `$BUILD2` are the two |
|
1692 |
builds you want to compare. |
|
33030 | 1693 |
|
45763 | 1694 |
To automatically build two consecutive versions and compare them, use |
1695 |
`COMPARE_BUILD`. The value of `COMPARE_BUILD` is a set of variable=value |
|
1696 |
assignments, like this: |
|
1697 |
``` |
|
1698 |
make COMPARE_BUILD=CONF=--enable-new-hotspot-feature:MAKE=hotspot |
|
1699 |
``` |
|
1700 |
See `make/InitSupport.gmk` for details on how to use `COMPARE_BUILD`. |
|
33030 | 1701 |
|
45763 | 1702 |
To analyze build performance, run with `LOG=trace` and check `$BUILD/build-trace-time.log`. |
1703 |
Use `JOBS=1` to avoid parallelism. |
|
33030 | 1704 |
|
45763 | 1705 |
Please check that you adhere to the [Code Conventions for the Build System]( |
1706 |
http://openjdk.java.net/groups/build/doc/code-conventions.html) before |
|
48743
ba52fa7bbf14
8195689: Remove generated-configure.sh and instead use autoconf
ihse
parents:
47928
diff
changeset
|
1707 |
submitting patches. |
45763 | 1708 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1709 |
## Contributing to the JDK |
45763 | 1710 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1711 |
So, now you've built your JDK, and made your first patch, and want to |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1712 |
contribute it back to the OpenJDK Community. |
33030 | 1713 |
|
50885
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1714 |
First of all: Thank you! We gladly welcome your contribution. |
7c728fa9d1af
8205956: Fix usage of "OpenJDK" in build and test instructions
mr
parents:
50586
diff
changeset
|
1715 |
However, please bear in mind that the JDK is a massive project, and we must ask |
45763 | 1716 |
you to follow our rules and guidelines to be able to accept your contribution. |
33030 | 1717 |
|
45763 | 1718 |
The official place to start is the ['How to contribute' page]( |
1719 |
http://openjdk.java.net/contribute/). There is also an official (but somewhat |
|
1720 |
outdated and skimpy on details) [Developer's Guide]( |
|
1721 |
http://openjdk.java.net/guide/). |
|
33030 | 1722 |
|
45763 | 1723 |
If this seems overwhelming to you, the Adoption Group is there to help you! A |
1724 |
good place to start is their ['New Contributor' page]( |
|
1725 |
https://wiki.openjdk.java.net/display/Adoption/New+Contributor), or start |
|
1726 |
reading the comprehensive [Getting Started Kit]( |
|
1727 |
https://adoptopenjdk.gitbooks.io/adoptopenjdk-getting-started-kit/en/). The |
|
1728 |
Adoption Group will also happily answer any questions you have about |
|
1729 |
contributing. Contact them by [mail]( |
|
1730 |
http://mail.openjdk.java.net/mailman/listinfo/adoption-discuss) or [IRC]( |
|
1731 |
http://openjdk.java.net/irc/). |
|
33030 | 1732 |
|
45763 | 1733 |
--- |
1734 |
# Override styles from the base CSS file that are not ideal for this document. |
|
1735 |
header-includes: |
|
1736 |
- '<style type="text/css">pre, code, tt { color: #1d6ae5; }</style>' |
|
1737 |
--- |