blob: 45b71d266e091813086850deeee4f884df343234 [file] [log] [blame]
J. Duke686d76f2007-12-01 00:00:00 +00001README:
Kelly O'Hair213481a2010-12-22 12:25:52 -08002 This file should be located at the top of the OpenJDK Mercurial root
3 repository. This root repository will include a "make" directory,
4 and a Makefile for building the entire OpenJDK.
5 A full OpenJDK repository set (forest) should also include the following
6 6 nested repositories:
7 "jdk", "hotspot", "langtools", "corba", "jaxws" and "jaxp".
8 There are also several source downloads for the jax* repositories that
9 will be needed.
10
11 This one root repository can be obtained with something like:
Mario Torre18fbb542011-07-26 21:54:25 +020012
13 hg clone http://hg.openjdk.java.net/jdk8/jdk8 openjdk8
14
15 To make sure you have all the nested repositories, you can run the
16 get_source.sh script located in the same respository as this file:
17
18 cd openjdk8 && sh ./get_source.sh
19
Kelly O'Hair213481a2010-12-22 12:25:52 -080020 People unfamiliar with Mercurial should read the first few chapters of
21 the Mercurial book: http://hgbook.red-bean.com/read/
J. Duke686d76f2007-12-01 00:00:00 +000022
23 See http://openjdk.java.net/ for more information about the OpenJDK.
24
25Simple Build Instructions:
Kelly O'Hair213481a2010-12-22 12:25:52 -080026
27 0. Get the necessary system software/packages installed on your system, see
Mario Torre18fbb542011-07-26 21:54:25 +020028 http://hg.openjdk.java.net/jdk8/build/raw-file/tip/README-builds.html
J. Duke686d76f2007-12-01 00:00:00 +000029
Kelly O'Hair213481a2010-12-22 12:25:52 -080030 1. If you don't have a jdk6 installed, download and install a JDK 6 from
J. Duke686d76f2007-12-01 00:00:00 +000031 http://java.sun.com/javase/downloads/index.jsp
Kelly O'Hair213481a2010-12-22 12:25:52 -080032 Set the environment variable ALT_BOOTDIR to the location of JDK 6.
J. Duke686d76f2007-12-01 00:00:00 +000033
Kelly O'Hair213481a2010-12-22 12:25:52 -080034 2. Check the sanity of doing a build with your current system:
Kelly O'Hairf240c002011-03-22 08:15:39 -070035 make sanity
J. Duke686d76f2007-12-01 00:00:00 +000036 See README-builds.html if you run into problems.
37
Kelly O'Hair213481a2010-12-22 12:25:52 -080038 3. Do a complete build of the OpenJDK:
Kelly O'Hairf240c002011-03-22 08:15:39 -070039 make all
J. Duke686d76f2007-12-01 00:00:00 +000040 The resulting JDK image should be found in build/*/j2sdk-image
41
Kelly O'Hairf240c002011-03-22 08:15:39 -070042where make is GNU make 3.81 or newer, /usr/bin/make on Linux usually
43is 3.81 or newer.
J. Duke686d76f2007-12-01 00:00:00 +000044
Kelly O'Hairf240c002011-03-22 08:15:39 -070045Complete details are available in README-builds.html.