-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22,706 changed files
with
6,523,511 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
^build/ | ||
^dist/ | ||
^testoutput/ | ||
/nbproject/private/ | ||
^make/netbeans/.*/build/ | ||
^make/netbeans/.*/dist/ | ||
^.hgtip | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
project=jdk8 | ||
bugids=dup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
OPENJDK ASSEMBLY EXCEPTION | ||
|
||
The OpenJDK source code made available by Sun at openjdk.java.net and | ||
openjdk.dev.java.net ("OpenJDK Code") is distributed under the terms of the | ||
GNU General Public License <http://www.gnu.org/copyleft/gpl.html> version 2 | ||
only ("GPL2"), with the following clarification and special exception. | ||
|
||
Linking this OpenJDK Code statically or dynamically with other code | ||
is making a combined work based on this library. Thus, the terms | ||
and conditions of GPL2 cover the whole combination. | ||
|
||
As a special exception, Sun gives you permission to link this | ||
OpenJDK Code with certain code licensed by Sun as indicated at | ||
http://openjdk.java.net/legal/exception-modules-2007-05-08.html | ||
("Designated Exception Modules") to produce an executable, | ||
regardless of the license terms of the Designated Exception Modules, | ||
and to copy and distribute the resulting executable under GPL2, | ||
provided that the Designated Exception Modules continue to be | ||
governed by the licenses under which they were offered by Sun. | ||
|
||
As such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code to | ||
build an executable that includes those portions of necessary code that Sun | ||
could not provide under GPL2 (or that Sun has provided under GPL2 with the | ||
Classpath exception). If you modify or add to the OpenJDK code, that new | ||
GPL2 code may still be combined with Designated Exception Modules if the | ||
new code is made subject to this exception by its copyright holder. |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
README: | ||
This file should be located at the top of the jdk Mercurial repository. | ||
|
||
See http://openjdk.java.net/ for more information about the OpenJDK. | ||
|
||
Simple Build Instructions: | ||
|
||
1. Download and install a JDK 6 from | ||
http://java.sun.com/javase/downloads/index.jsp | ||
Set the environment variable ALT_BOOTDIR to the location of this JDK 6. | ||
|
||
2. Either download and install the latest JDK7 from | ||
http://download.java.net/openjdk/jdk7/, or build your own complete | ||
OpenJDK7 by using the top level Makefile in the OpenJDK Mercurial forest. | ||
Set the environment variable ALT_JDK_IMPORT_PATH to the location of | ||
this latest JDK7 or OpenJDK7 build. | ||
|
||
3. Check the sanity of doing a build with the current machine: | ||
cd make && gnumake sanity | ||
See README-builds.html if you run into problems. | ||
|
||
4. Do a partial build of the jdk: | ||
cd make && gnumake all | ||
|
||
5. Construct the images: | ||
cd make && gnumake images | ||
The resulting JDK image should be found in build/*/j2sdk-image | ||
|
||
|
Oops, something went wrong.