Go to file
Magnus Ihse Bursie 678a86c2ea 8085822: JEP 223: New Version-String Scheme (initial integration)
Reviewed-by: erikj, dcubed, dholmes
2015-06-11 00:21:56 +02:00
.jcheck
common 8085822: JEP 223: New Version-String Scheme (initial integration) 2015-06-11 00:21:56 +02:00
corba Merge 2015-05-28 16:50:28 -07:00
hotspot Merge 2015-05-28 16:52:47 -07:00
jaxp Added tag jdk9-b66 for changeset 4a2e0a5ac013 2015-05-28 16:13:51 -07:00
jaxws Added tag jdk9-b66 for changeset 76bc0159a861 2015-05-28 16:13:52 -07:00
jdk Merge 2015-05-28 16:51:18 -07:00
langtools Merge 2015-05-28 16:54:56 -07:00
make 8085822: JEP 223: New Version-String Scheme (initial integration) 2015-06-11 00:21:56 +02:00
nashorn Merge 2015-05-28 16:50:12 -07:00
test Merge 2015-05-09 07:32:37 -04:00
.hgignore
.hgtags Added tag jdk9-b66 for changeset ff3fc75f3214 2017-07-05 20:35:22 +02:00
.hgtags-top-repo Added tag jdk9-b66 for changeset a3ea54d69bd0 2015-05-28 16:13:48 -07:00
ASSEMBLY_EXCEPTION
LICENSE
Makefile 8076060: Improve make bootstrap process 2015-03-26 16:17:30 +01:00
README
README-builds.html 8072023: Investigate and upgrade the minimum supported gnumake for JDK 9, from 3.81 to 4.0 2015-04-17 10:43:28 +02:00
THIRD_PARTY_README
configure 8076060: Improve make bootstrap process 2015-03-26 16:17:30 +01:00
get_source.sh
modules.xml 8074432: Move jdeps and javap to jdk.jdeps module 2015-05-27 13:25:04 -07:00

README

README:
  This file should be located at the top of the OpenJDK Mercurial root
  repository. A full OpenJDK repository set (forest) should also include
  the following 7 nested repositories:
    "jdk", "hotspot", "langtools", "nashorn", "corba", "jaxws"  and "jaxp".

  The root repository can be obtained with something like:
    hg clone http://hg.openjdk.java.net/jdk9/jdk9 openjdk9
  
  You can run the get_source.sh script located in the root repository to get
  the other needed repositories:
    cd openjdk9 && sh ./get_source.sh

  People unfamiliar with Mercurial should read the first few chapters of
  the Mercurial book: http://hgbook.red-bean.com/read/

  See http://openjdk.java.net/ for more information about OpenJDK.

Simple Build Instructions:
  
  0. Get the necessary system software/packages installed on your system, see
     http://hg.openjdk.java.net/jdk9/jdk9/raw-file/tip/README-builds.html

  1. If you don't have a jdk8 or newer jdk, download and install it from
     http://java.sun.com/javase/downloads/index.jsp
     Add the /bin directory of this installation to your PATH environment
     variable.

  2. Configure the build:
       bash ./configure
  
  3. Build the OpenJDK:
       make all
     The resulting JDK image should be found in build/*/images/j2sdk-image

where make is GNU make 3.81 or newer, /usr/bin/make on Linux usually
is 3.81 or newer. Note that on Solaris, GNU make is called "gmake".

Complete details are available in the file:
     http://hg.openjdk.java.net/jdk9/jdk9/raw-file/tip/README-builds.html