mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-24 04:54:40 +02:00
Merge
This commit is contained in:
commit
4094166f62
2 changed files with 11 additions and 2 deletions
|
@ -545,7 +545,11 @@
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<strong>Windows:</strong>
|
<strong>Windows:</strong>
|
||||||
Make sure you start your build inside a bash/sh/ksh shell.
|
Make sure you start your build inside a bash/sh/ksh shell
|
||||||
|
and are using a <tt>make.exe</tt> utility built for that
|
||||||
|
environment (a cygwin <tt>make.exe</tt> is not the same
|
||||||
|
as a <tt>make.exe</tt> built for something like
|
||||||
|
<a href="http://www.mkssoftware.com/">MKS</a>).
|
||||||
<br>
|
<br>
|
||||||
<b>WARNING:</b> Watch out for make version 3.81, it may
|
<b>WARNING:</b> Watch out for make version 3.81, it may
|
||||||
not work due to a lack of support for MS-DOS drive letter paths
|
not work due to a lack of support for MS-DOS drive letter paths
|
||||||
|
@ -826,7 +830,8 @@
|
||||||
All OpenJDK builds require access to the previously released
|
All OpenJDK builds require access to the previously released
|
||||||
JDK 6, this is often called a bootstrap JDK.
|
JDK 6, this is often called a bootstrap JDK.
|
||||||
The JDK 6 binaries can be downloaded from Sun's
|
The JDK 6 binaries can be downloaded from Sun's
|
||||||
<a href="http://java.sun.com/javase/1.6.0/download.html" target="_blank">JDK 6 download site</a>.
|
<a href="http://java.sun.com/javase/downloads/index.jsp"
|
||||||
|
target="_blank">JDK 6 download site</a>.
|
||||||
For build performance reasons
|
For build performance reasons
|
||||||
is very important that this bootstrap JDK be made available on the
|
is very important that this bootstrap JDK be made available on the
|
||||||
local disk of the machine doing the build.
|
local disk of the machine doing the build.
|
||||||
|
|
|
@ -72,6 +72,10 @@ ifeq ($(DEBUG_NAME), fastdebug)
|
||||||
HOTSPOT_TARGET = all_fastdebug
|
HOTSPOT_TARGET = all_fastdebug
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(ZERO_BUILD), true)
|
||||||
|
HOTSPOT_TARGET := $(HOTSPOT_TARGET)zero
|
||||||
|
endif
|
||||||
|
|
||||||
HOTSPOT_BUILD_ARGUMENTS += $(COMMON_BUILD_ARGUMENTS)
|
HOTSPOT_BUILD_ARGUMENTS += $(COMMON_BUILD_ARGUMENTS)
|
||||||
HOTSPOT_BUILD_ARGUMENTS += ALT_OUTPUTDIR=$(HOTSPOT_OUTPUTDIR)
|
HOTSPOT_BUILD_ARGUMENTS += ALT_OUTPUTDIR=$(HOTSPOT_OUTPUTDIR)
|
||||||
HOTSPOT_BUILD_ARGUMENTS += ALT_EXPORT_PATH=$(HOTSPOT_EXPORT_PATH)
|
HOTSPOT_BUILD_ARGUMENTS += ALT_EXPORT_PATH=$(HOTSPOT_EXPORT_PATH)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue