make/windows/build.bat

Wed, 11 Jan 2012 17:34:02 -0500

author
phh
date
Wed, 11 Jan 2012 17:34:02 -0500
changeset 3427
94ec88ca68e2
parent 2384
0a8e0d4345b3
child 4153
b9a9ed0f8eeb
permissions
-rw-r--r--

7115199: Add event tracing hooks and Java Flight Recorder infrastructure
Summary: Added a nop tracing infrastructure, JFR makefile changes and other infrastructure used only by JFR.
Reviewed-by: acorn, sspitsyn
Contributed-by: markus.gronlund@oracle.com

     1 @echo off
     2 REM
     3 REM Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     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
    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 REM  
    24 REM
    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 
    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.
    33 REM 
    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 cl 2>&1 | grep "x64" >NUL
    39 if %errorlevel% == 0 goto amd64
    40 set ARCH=x86
    41 set BUILDARCH=i486
    42 set Platform_arch=x86
    43 set Platform_arch_model=x86_32
    44 goto end
    45 :amd64
    46 set LP64=1
    47 set ARCH=x86
    48 set BUILDARCH=amd64
    49 set Platform_arch=x86
    50 set Platform_arch_model=x86_64
    51 goto end
    52 :isia64
    53 set LP64=1
    54 set ARCH=ia64
    55 set Platform_arch=ia64
    56 set Platform_arch_model=ia64
    57 :end
    59 if "%4" == ""          goto usage
    60 if not "%7" == ""      goto usage
    62 if "%1" == "product"   goto test1
    63 if "%1" == "debug"     goto test1
    64 if "%1" == "fastdebug" goto test1
    65 if "%1" == "tree"      goto test1
    66 goto usage
    68 :test1
    69 if "%2" == "core"      goto test2
    70 if "%2" == "kernel"    goto test2
    71 if "%2" == "compiler1" goto test2
    72 if "%2" == "compiler2" goto test2
    73 if "%2" == "tiered"    goto test2
    74 if "%2" == "adlc"      goto build_adlc
    76 goto usage
    78 :test2
    79 if "%1" == "tree"      goto build_tree
    80 REM check_j2se_version
    81 REM jvmti.make requires J2SE 1.4.x or newer.
    82 REM If not found then fail fast.
    83 %4\bin\javap javax.xml.transform.TransformerFactory >NUL
    84 if %errorlevel% == 0 goto build
    85 echo.
    86 echo J2SE version found at %4\bin\java:
    87 %4\bin\java -version
    88 echo.
    89 echo An XSLT processor (J2SE 1.4.x or newer) is required to
    90 echo bootstrap this build
    91 echo.
    93 goto usage
    95 :build
    96 nmake -f %3/make/windows/build.make Variant=%2 WorkSpace=%3 BootStrapDir=%4 BuildUser="%USERNAME%" HOTSPOT_BUILD_VERSION="%5" %1
    97 goto end
    99 :build_adlc
   100 nmake -f %3/make/windows/build.make Variant=compiler2 WorkSpace=%3 BootStrapDir=%4 BuildUser="%USERNAME%" HOTSPOT_BUILD_VERSION=%5 ADLC_ONLY=1 %1
   101 goto end
   103 :build_tree
   104 nmake -f %3/make/windows/build.make Variant=%2 WorkSpace=%3 BootStrapDir=%4 BuildUser="%USERNAME%" HOTSPOT_BUILD_VERSION="%5" %1
   105 goto end
   107 :usage
   108 echo Usage: build flavor version workspace bootstrap_dir [build_id] [windbg_home]
   109 echo.
   110 echo where:
   111 echo flavor is "product", "debug" or "fastdebug",
   112 echo version is "core", "kernel", "compiler1", "compiler2", or "tiered",
   113 echo workspace is source directory without trailing slash, 
   114 echo bootstrap_dir is a full path to a JDK in which bin/java 
   115 echo   and bin/javac are present and working, and build_id is an 
   116 echo   optional build identifier displayed by java -version
   117 exit /b 1
   119 :end
   120 exit /b %errorlevel%

mercurial