annotate make/windows/cross_build.bat @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents a294fd0c4b38
children c18cbe5936b8
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
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 91
diff changeset
3 REM Copyright 2003-2008 Sun Microsystems, Inc. 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
a61af66fc99e Initial load
duke
parents:
diff changeset
20 REM Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
21 REM CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
22 REM have any questions.
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=