2007-12-01 00:00:00 +00:00
|
|
|
README:
|
2010-12-22 20:25:52 +00:00
|
|
|
This file should be located at the top of the OpenJDK Mercurial root
|
2013-02-23 18:47:01 +00:00
|
|
|
repository. A full OpenJDK repository set (forest) should also include
|
2014-05-26 21:22:04 +00:00
|
|
|
the following 7 nested repositories:
|
|
|
|
"jdk", "hotspot", "langtools", "nashorn", "corba", "jaxws" and "jaxp".
|
2011-07-26 19:54:25 +00:00
|
|
|
|
2013-02-23 18:47:01 +00:00
|
|
|
The root repository can be obtained with something like:
|
2014-05-26 21:22:04 +00:00
|
|
|
hg clone http://hg.openjdk.java.net/jdk9/jdk9 openjdk9
|
2015-12-15 14:45:53 +00:00
|
|
|
|
2013-02-23 18:47:01 +00:00
|
|
|
You can run the get_source.sh script located in the root repository to get
|
|
|
|
the other needed repositories:
|
2014-05-26 21:22:04 +00:00
|
|
|
cd openjdk9 && sh ./get_source.sh
|
2011-07-26 19:54:25 +00:00
|
|
|
|
2010-12-22 20:25:52 +00:00
|
|
|
People unfamiliar with Mercurial should read the first few chapters of
|
|
|
|
the Mercurial book: http://hgbook.red-bean.com/read/
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-02-23 18:47:01 +00:00
|
|
|
See http://openjdk.java.net/ for more information about OpenJDK.
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
Simple Build Instructions:
|
2015-12-15 14:45:53 +00:00
|
|
|
|
2010-12-22 20:25:52 +00:00
|
|
|
0. Get the necessary system software/packages installed on your system, see
|
2014-05-26 21:22:04 +00:00
|
|
|
http://hg.openjdk.java.net/jdk9/jdk9/raw-file/tip/README-builds.html
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2014-05-26 21:22:04 +00:00
|
|
|
1. If you don't have a jdk8 or newer jdk, download and install it from
|
2007-12-01 00:00:00 +00:00
|
|
|
http://java.sun.com/javase/downloads/index.jsp
|
2013-02-23 18:47:01 +00:00
|
|
|
Add the /bin directory of this installation to your PATH environment
|
|
|
|
variable.
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-02-23 18:47:01 +00:00
|
|
|
2. Configure the build:
|
|
|
|
bash ./configure
|
2015-12-15 14:45:53 +00:00
|
|
|
|
2013-02-23 18:47:01 +00:00
|
|
|
3. Build the OpenJDK:
|
2011-03-22 15:15:39 +00:00
|
|
|
make all
|
2015-12-15 14:45:53 +00:00
|
|
|
The resulting JDK image should be found in build/*/images/jdk
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2011-03-22 15:15:39 +00:00
|
|
|
where make is GNU make 3.81 or newer, /usr/bin/make on Linux usually
|
2013-02-23 18:47:01 +00:00
|
|
|
is 3.81 or newer. Note that on Solaris, GNU make is called "gmake".
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-02-23 18:47:01 +00:00
|
|
|
Complete details are available in the file:
|
2014-05-26 21:22:04 +00:00
|
|
|
http://hg.openjdk.java.net/jdk9/jdk9/raw-file/tip/README-builds.html
|