author | iveresov |
Fri, 03 Sep 2010 17:51:07 -0700 | |
changeset 6453 | 970dc585ab63 |
parent 5547 | f4b087cbb361 |
child 7662 | 5f31baaff55b |
permissions | -rw-r--r-- |
1 | 1 |
@echo off |
2 |
REM |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5093
diff
changeset
|
3 |
REM Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved. |
1 | 4 |
REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
REM |
|
6 |
REM This code is free software; you can redistribute it and/or modify it |
|
7 |
REM under the terms of the GNU General Public License version 2 only, as |
|
8 |
REM published by the Free Software Foundation. |
|
9 |
REM |
|
10 |
REM This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
REM ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
REM FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
REM version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
REM accompanied this code). |
|
15 |
REM |
|
16 |
REM You should have received a copy of the GNU General Public License version |
|
17 |
REM 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
REM Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
REM |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5093
diff
changeset
|
20 |
REM Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5093
diff
changeset
|
21 |
REM or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5093
diff
changeset
|
22 |
REM questions. |
1 | 23 |
REM |
24 |
REM |
|
25 |
||
26 |
||
27 |
REM |
|
28 |
REM Since we don't have uname and we could be cross-compiling, |
|
29 |
REM Use the compiler to determine which ARCH we are building |
|
30 |
REM |
|
5093
5fe28adc52ef
6938185: 3/4 6923488 breaks Windows command shell builds
dcubed
parents:
5087
diff
changeset
|
31 |
REM Note: Running this batch file from the Windows command shell requires |
5fe28adc52ef
6938185: 3/4 6923488 breaks Windows command shell builds
dcubed
parents:
5087
diff
changeset
|
32 |
REM that "grep" be accessible on the PATH. An MKS install does this. |
5fe28adc52ef
6938185: 3/4 6923488 breaks Windows command shell builds
dcubed
parents:
5087
diff
changeset
|
33 |
REM |
1 | 34 |
cl 2>&1 | grep "IA-64" >NUL |
35 |
if %errorlevel% == 0 goto isia64 |
|
36 |
cl 2>&1 | grep "AMD64" >NUL |
|
37 |
if %errorlevel% == 0 goto amd64 |
|
38 |
set ARCH=x86 |
|
39 |
set BUILDARCH=i486 |
|
40 |
set Platform_arch=x86 |
|
41 |
set Platform_arch_model=x86_32 |
|
42 |
goto end |
|
43 |
:amd64 |
|
44 |
set LP64=1 |
|
45 |
set ARCH=x86 |
|
46 |
set BUILDARCH=amd64 |
|
47 |
set Platform_arch=x86 |
|
48 |
set Platform_arch_model=x86_64 |
|
49 |
goto end |
|
50 |
:isia64 |
|
51 |
set LP64=1 |
|
52 |
set ARCH=ia64 |
|
53 |
set Platform_arch=ia64 |
|
54 |
set Platform_arch_model=ia64 |
|
55 |
:end |
|
56 |
||
57 |
if "%4" == "" goto usage |
|
58 |
if not "%7" == "" goto usage |
|
59 |
||
60 |
if "%1" == "product" goto test1 |
|
61 |
if "%1" == "debug" goto test1 |
|
62 |
if "%1" == "fastdebug" goto test1 |
|
5087
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
670
diff
changeset
|
63 |
if "%1" == "tree" goto test1 |
1 | 64 |
goto usage |
65 |
||
66 |
:test1 |
|
67 |
if "%2" == "core" goto test2 |
|
5087
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
670
diff
changeset
|
68 |
if "%2" == "kernel" goto test2 |
1 | 69 |
if "%2" == "compiler1" goto test2 |
70 |
if "%2" == "compiler2" goto test2 |
|
71 |
if "%2" == "tiered" goto test2 |
|
72 |
if "%2" == "adlc" goto build_adlc |
|
73 |
||
74 |
goto usage |
|
75 |
||
76 |
:test2 |
|
5087
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
670
diff
changeset
|
77 |
if "%1" == "tree" goto build_tree |
1 | 78 |
REM check_j2se_version |
79 |
REM jvmti.make requires J2SE 1.4.x or newer. |
|
80 |
REM If not found then fail fast. |
|
81 |
%4\bin\javap javax.xml.transform.TransformerFactory >NUL |
|
82 |
if %errorlevel% == 0 goto build |
|
83 |
echo. |
|
84 |
echo J2SE version found at %4\bin\java: |
|
85 |
%4\bin\java -version |
|
86 |
echo. |
|
87 |
echo An XSLT processor (J2SE 1.4.x or newer) is required to |
|
88 |
echo bootstrap this build |
|
89 |
echo. |
|
90 |
||
91 |
goto usage |
|
92 |
||
93 |
:build |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
94 |
nmake -f %3/make/windows/build.make Variant=%2 WorkSpace=%3 BootStrapDir=%4 BuildUser="%USERNAME%" HOTSPOT_BUILD_VERSION="%5" %1 |
1 | 95 |
goto end |
96 |
||
97 |
:build_adlc |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
98 |
nmake -f %3/make/windows/build.make Variant=compiler2 WorkSpace=%3 BootStrapDir=%4 BuildUser="%USERNAME%" HOTSPOT_BUILD_VERSION=%5 ADLC_ONLY=1 %1 |
1 | 99 |
goto end |
100 |
||
5087
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
670
diff
changeset
|
101 |
:build_tree |
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
670
diff
changeset
|
102 |
nmake -f %3/make/windows/build.make Variant=%2 WorkSpace=%3 BootStrapDir=%4 BuildUser="%USERNAME%" HOTSPOT_BUILD_VERSION="%5" %1 |
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
670
diff
changeset
|
103 |
goto end |
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
670
diff
changeset
|
104 |
|
1 | 105 |
:usage |
106 |
echo Usage: build flavor version workspace bootstrap_dir [build_id] [windbg_home] |
|
107 |
echo. |
|
108 |
echo where: |
|
109 |
echo flavor is "product", "debug" or "fastdebug", |
|
110 |
echo version is "core", "kernel", "compiler1", "compiler2", or "tiered", |
|
111 |
echo workspace is source directory without trailing slash, |
|
5087
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
670
diff
changeset
|
112 |
echo bootstrap_dir is a full path to a JDK in which bin/java |
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
670
diff
changeset
|
113 |
echo and bin/javac are present and working, and build_id is an |
1 | 114 |
echo optional build identifier displayed by java -version |
5093
5fe28adc52ef
6938185: 3/4 6923488 breaks Windows command shell builds
dcubed
parents:
5087
diff
changeset
|
115 |
exit /b 1 |
1 | 116 |
|
117 |
:end |
|
5093
5fe28adc52ef
6938185: 3/4 6923488 breaks Windows command shell builds
dcubed
parents:
5087
diff
changeset
|
118 |
exit /b %errorlevel% |