Changeset 278 for trunk/openjdk/hotspot/make/windows/build.bat
- Timestamp:
- Mar 26, 2011, 8:39:20 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:ignore
-
old new 1 1 build 2 build-product-release
-
-
Property svn:mergeinfo
set to
/branches/vendor/oracle/openjdk6/b22 merged eligible /branches/vendor/oracle/openjdk6/current merged eligible
- Property svn:ignore
-
trunk/openjdk/hotspot/make/windows/build.bat
r2 r278 1 1 @echo off 2 2 REM 3 REM Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.3 REM Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved. 4 4 REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 REM … … 18 18 REM Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 19 19 REM 20 REM Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,21 REM CA 95054 USA or visit www.sun.com if you need additional information or22 REM have anyquestions.20 REM Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 21 REM or visit www.oracle.com if you need additional information or have any 22 REM questions. 23 23 REM 24 24 REM … … 28 28 REM Since we don't have uname and we could be cross-compiling, 29 29 REM Use the compiler to determine which ARCH we are building 30 REM 31 REM Note: Running this batch file from the Windows command shell requires 32 REM that "grep" be accessible on the PATH. An MKS install does this. 30 33 REM 31 34 cl 2>&1 | grep "IA-64" >NUL … … 58 61 if "%1" == "debug" goto test1 59 62 if "%1" == "fastdebug" goto test1 63 if "%1" == "tree" goto test1 60 64 goto usage 61 65 62 66 :test1 63 67 if "%2" == "core" goto test2 64 if "%2" == "kernel" goto test268 if "%2" == "kernel" goto test2 65 69 if "%2" == "compiler1" goto test2 66 70 if "%2" == "compiler2" goto test2 … … 71 75 72 76 :test2 77 if "%1" == "tree" goto build_tree 73 78 REM check_j2se_version 74 79 REM jvmti.make requires J2SE 1.4.x or newer. … … 94 99 goto end 95 100 101 :build_tree 102 nmake -f %3/make/windows/build.make Variant=%2 WorkSpace=%3 BootStrapDir=%4 BuildUser="%USERNAME%" HOTSPOT_BUILD_VERSION="%5" %1 103 goto end 104 96 105 :usage 97 106 echo Usage: build flavor version workspace bootstrap_dir [build_id] [windbg_home] … … 101 110 echo version is "core", "kernel", "compiler1", "compiler2", or "tiered", 102 111 echo workspace is source directory without trailing slash, 103 echo bootstrap_dir is a full path to echoa JDK in which bin/java104 echo and bin/javac are present and working, and echobuild_id is an112 echo bootstrap_dir is a full path to a JDK in which bin/java 113 echo and bin/javac are present and working, and build_id is an 105 114 echo optional build identifier displayed by java -version 115 exit /b 1 106 116 107 117 :end 118 exit /b %errorlevel%
Note:
See TracChangeset
for help on using the changeset viewer.