README

Tue, 13 Aug 2019 14:32:20 +0300

author
apetushkov
date
Tue, 13 Aug 2019 14:32:20 +0300
changeset 2504
e86abea74e04
parent 632
d3e3d5b06f45
child 1133
50aaf272884f
permissions
-rw-r--r--

8223147: JFR Backport
8199712: Flight Recorder
8203346: JFR: Inconsistent signature of jfr_add_string_constant
8195817: JFR.stop should require name of recording
8195818: JFR.start should increase autogenerated name by one
8195819: Remove recording=x from jcmd JFR.check output
8203921: JFR thread sampling is missing fixes from JDK-8194552
8203929: Limit amount of data for JFR.dump
8203664: JFR start failure after AppCDS archive created with JFR StartFlightRecording
8003209: JFR events for network utilization
8207392: [PPC64] Implement JFR profiling
Summary: Backport JFR from JDK11. Initial integration
Reviewed-by: neugens

     1 README:
     2   This file should be located at the top of the OpenJDK Mercurial root
     3   repository. A full OpenJDK repository set (forest) should also include
     4   the following 6 nested repositories:
     5     "jdk", "hotspot", "langtools", "corba", "jaxws"  and "jaxp".
     7   The root repository can be obtained with something like:
     8     hg clone http://hg.openjdk.java.net/jdk8/jdk8 openjdk8
    10   You can run the get_source.sh script located in the root repository to get
    11   the other needed repositories:
    12     cd openjdk8 && sh ./get_source.sh
    14   People unfamiliar with Mercurial should read the first few chapters of
    15   the Mercurial book: http://hgbook.red-bean.com/read/
    17   See http://openjdk.java.net/ for more information about OpenJDK.
    19 Simple Build Instructions:
    21   0. Get the necessary system software/packages installed on your system, see
    22      http://hg.openjdk.java.net/jdk8/jdk8/raw-file/tip/README-builds.html
    24   1. If you don't have a jdk7u7 or newer jdk, download and install it from
    25      http://java.sun.com/javase/downloads/index.jsp
    26      Add the /bin directory of this installation to your PATH environment
    27      variable.
    29   2. Configure the build:
    30        bash ./configure
    32   3. Build the OpenJDK:
    33        make all
    34      The resulting JDK image should be found in build/*/images/j2sdk-image
    36 where make is GNU make 3.81 or newer, /usr/bin/make on Linux usually
    37 is 3.81 or newer. Note that on Solaris, GNU make is called "gmake".
    39 Complete details are available in the file:
    40      http://hg.openjdk.java.net/jdk8/jdk8/raw-file/tip/README-builds.html

mercurial