annotate make/windows/cross_build.bat @ 4710:41406797186b

7113012: G1: rename not-fully-young GCs as "mixed" Summary: Renamed partially-young GCs as mixed and fully-young GCs as young. Change all external output that includes those terms (GC log and GC ergo log) as well as any comments, fields, methods, etc. The changeset also includes very minor code tidying up (added some curly brackets). Reviewed-by: johnc, brutisso
author tonyp
date Fri, 16 Dec 2011 02:14:27 -0500
parents c18cbe5936b8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 @echo off
a61af66fc99e Initial load
duke
parents:
diff changeset
2 REM
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
diff changeset
3 REM Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4 REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
5 REM
a61af66fc99e Initial load
duke
parents:
diff changeset
6 REM This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
7 REM under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
8 REM published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
9 REM
a61af66fc99e Initial load
duke
parents:
diff changeset
10 REM This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
11 REM ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
12 REM FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
13 REM version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
14 REM accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
15 REM
a61af66fc99e Initial load
duke
parents:
diff changeset
16 REM You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
17 REM 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
18 REM Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
19 REM
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
diff changeset
20 REM Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
diff changeset
21 REM or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
diff changeset
22 REM questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
23 REM
a61af66fc99e Initial load
duke
parents:
diff changeset
24 REM
a61af66fc99e Initial load
duke
parents:
diff changeset
25
a61af66fc99e Initial load
duke
parents:
diff changeset
26 REM Cross compile IA64 compiler2 VM
a61af66fc99e Initial load
duke
parents:
diff changeset
27 REM Usage:
a61af66fc99e Initial load
duke
parents:
diff changeset
28 REM cross_compile flavor workspace bootstrap_dir [build_id]
a61af66fc99e Initial load
duke
parents:
diff changeset
29 REM %1 %2 %3 %4
a61af66fc99e Initial load
duke
parents:
diff changeset
30 REM
a61af66fc99e Initial load
duke
parents:
diff changeset
31 REM Set current directory
a61af66fc99e Initial load
duke
parents:
diff changeset
32 for /F %%i in ('cd') do set CD=%%i
a61af66fc99e Initial load
duke
parents:
diff changeset
33 echo Setting up Visual C++ Compilation Environment
a61af66fc99e Initial load
duke
parents:
diff changeset
34 if "%MSVCDir%" == "" goto setdir1
a61af66fc99e Initial load
duke
parents:
diff changeset
35 goto setenv1
a61af66fc99e Initial load
duke
parents:
diff changeset
36 :setdir1
a61af66fc99e Initial load
duke
parents:
diff changeset
37 SET MSVCDir=C:\Program Files\Microsoft Visual Studio\VC98
a61af66fc99e Initial load
duke
parents:
diff changeset
38 :setenv1
a61af66fc99e Initial load
duke
parents:
diff changeset
39 SET OLDINCLUDE=%INCLUDE%
a61af66fc99e Initial load
duke
parents:
diff changeset
40 SET OLDLIB=%LIB%
a61af66fc99e Initial load
duke
parents:
diff changeset
41 SET OLDPATH=%PATH%
a61af66fc99e Initial load
duke
parents:
diff changeset
42 call "%MSVCDir%\Bin\VCVARS32"
91
a294fd0c4b38 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 0
diff changeset
43 call %2\make\windows\build %1 adlc %2 %3 %4
0
a61af66fc99e Initial load
duke
parents:
diff changeset
44 SET INCLUDE=%OLDINCLUDE%
a61af66fc99e Initial load
duke
parents:
diff changeset
45 SET LIB=%OLDLIB%
a61af66fc99e Initial load
duke
parents:
diff changeset
46 SET PATH=%OLDPATH%
a61af66fc99e Initial load
duke
parents:
diff changeset
47 echo Setting up 64-BIT Compilation Environment
a61af66fc99e Initial load
duke
parents:
diff changeset
48 if "%MSSdk%" == "" goto setdir2
a61af66fc99e Initial load
duke
parents:
diff changeset
49 goto setenv2
a61af66fc99e Initial load
duke
parents:
diff changeset
50 :setdir2
a61af66fc99e Initial load
duke
parents:
diff changeset
51 SET MSSdk=C:\Program Files\Microsoft SDK
a61af66fc99e Initial load
duke
parents:
diff changeset
52 :setenv2
a61af66fc99e Initial load
duke
parents:
diff changeset
53 call "%MSSdk%\SetEnv.bat" /XP64
a61af66fc99e Initial load
duke
parents:
diff changeset
54 SET ALT_ADLC_PATH=%CD%\windows_i486_compiler2\generated
91
a294fd0c4b38 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 0
diff changeset
55 call %2\make\windows\build %1 compiler2 %2 %3 %4
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56 SET INCLUDE=%OLDINCLUDE%
a61af66fc99e Initial load
duke
parents:
diff changeset
57 SET LIB=%OLDLIB%
a61af66fc99e Initial load
duke
parents:
diff changeset
58 SET PATH=%OLDPATH%
a61af66fc99e Initial load
duke
parents:
diff changeset
59 SET OLDINCLUDE=
a61af66fc99e Initial load
duke
parents:
diff changeset
60 SET OLDLIB=
a61af66fc99e Initial load
duke
parents:
diff changeset
61 SET OLDPATH=