make/windows/create.bat

Tue, 26 Mar 2013 14:11:21 -0400

author
zgu
date
Tue, 26 Mar 2013 14:11:21 -0400
changeset 4821
6b748c9e1845
parent 2675
74e790c48cd4
child 5500
31f3b1e1c5e5
permissions
-rw-r--r--

8010651: create.bat still builds the kernel
Summary: Remove old kernel build targets and VS C++ projects created by create.bat on Windows
Reviewed-by: coleenp, sla

duke@435 1 @echo off
duke@435 2 REM
sla@2540 3 REM Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 4 REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 5 REM
duke@435 6 REM This code is free software; you can redistribute it and/or modify it
duke@435 7 REM under the terms of the GNU General Public License version 2 only, as
duke@435 8 REM published by the Free Software Foundation.
duke@435 9 REM
duke@435 10 REM This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 11 REM ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 12 REM FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 13 REM version 2 for more details (a copy is included in the LICENSE file that
duke@435 14 REM accompanied this code).
duke@435 15 REM
duke@435 16 REM You should have received a copy of the GNU General Public License version
duke@435 17 REM 2 along with this work; if not, write to the Free Software Foundation,
duke@435 18 REM Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 19 REM
trims@1907 20 REM Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 21 REM or visit www.oracle.com if you need additional information or have any
trims@1907 22 REM questions.
duke@435 23 REM
duke@435 24 REM
duke@435 25
duke@435 26 REM This is the interactive build setup script (as opposed to the batch
duke@435 27 REM build execution script). It creates $HotSpotBuildSpace if necessary,
duke@435 28 REM copies the appropriate files out of $HotSpotWorkSpace into it, and
stefank@2314 29 REM builds and runs ProjectCreator in it. This has the side-effect of creating
duke@435 30 REM the vm.vcproj file in the buildspace, which is then used in Visual C++.
duke@435 31
duke@435 32 REM
duke@435 33 REM Since we don't have uname and we could be cross-compiling,
duke@435 34 REM Use the compiler to determine which ARCH we are building
duke@435 35 REM
dcubed@1763 36 REM Note: Running this batch file from the Windows command shell requires
dcubed@1763 37 REM that "grep" be accessible on the PATH. An MKS install does this.
dcubed@1763 38 REM
sla@2369 39
sla@2369 40 cl 2>NUL >NUL
sla@2369 41 if %errorlevel% == 0 goto nexttest
sla@2369 42 echo Make sure cl.exe is in your PATH before running this script.
sla@2369 43 goto end
sla@2369 44
sla@2369 45 :nexttest
sla@2369 46 grep -V 2>NUL >NUL
sla@2369 47 if %errorlevel% == 0 goto testit
sla@2369 48 echo Make sure grep.exe is in your PATH before running this script. Either cygwin or MKS should work.
sla@2369 49 goto end
sla@2369 50
sla@2369 51
sla@2369 52 :testit
sla@2540 53 cl 2>&1 | grep "x64" >NUL
duke@435 54 if %errorlevel% == 0 goto amd64
duke@435 55 set ARCH=x86
duke@435 56 set BUILDARCH=i486
duke@435 57 set Platform_arch=x86
duke@435 58 set Platform_arch_model=x86_32
sla@2369 59 goto done
duke@435 60 :amd64
duke@435 61 set ARCH=x86
duke@435 62 set BUILDARCH=amd64
duke@435 63 set Platform_arch=x86
duke@435 64 set Platform_arch_model=x86_64
sla@2369 65 :done
duke@435 66
duke@435 67 setlocal
duke@435 68
duke@435 69 if "%1" == "" goto usage
duke@435 70
sla@2369 71 if not "%2" == "" goto usage
duke@435 72
sla@2369 73 REM Set HotSpotWorkSpace to the directy two steps above this script
sla@2369 74 for %%i in ("%~dp0..") do ( set HotSpotWorkSpace=%%~dpi)
sla@2369 75 set HotSpotBuildRoot=%HotSpotWorkSpace%build
sla@2540 76 set HotSpotBuildSpace=%HotSpotBuildRoot%\vs-%BUILDARCH%
sla@2369 77 set HotSpotJDKDist=%1
sla@2369 78
duke@435 79
duke@435 80 REM figure out MSC version
kamg@526 81 for /F %%i in ('sh %HotSpotWorkSpace%/make/windows/get_msc_ver.sh') do set %%i
duke@435 82
duke@435 83 echo **************************************************************
sla@2540 84 set ProjectFile=%HotSpotBuildSpace%\jvm.vcproj
duke@435 85 if "%MSC_VER%" == "1200" (
sla@2540 86 set ProjectFile=%HotSpotBuildSpace%\jvm.dsp
duke@435 87 echo Will generate VC6 project {unsupported}
duke@435 88 ) else (
ikrylov@1094 89 if "%MSC_VER%" == "1400" (
ikrylov@1094 90 echo Will generate VC8 {Visual Studio 2005}
ikrylov@1094 91 ) else (
ikrylov@1094 92 if "%MSC_VER%" == "1500" (
ikrylov@1094 93 echo Will generate VC9 {Visual Studio 2008}
ikrylov@1094 94 ) else (
sla@2369 95 if "%MSC_VER%" == "1600" (
sla@2675 96 echo Will generate VC10 {Visual Studio 2010}
sla@2675 97 set ProjectFile=%HotSpotBuildSpace%\jvm.vcxproj
sla@2369 98 ) else (
ikrylov@1094 99 echo Will generate VC7 project {Visual Studio 2003 .NET}
ikrylov@1094 100 )
ikrylov@1094 101 )
duke@435 102 )
sla@2369 103 )
sla@2675 104 echo %ProjectFile%
duke@435 105 echo **************************************************************
duke@435 106
duke@435 107 REM Test all variables to see whether the directories they
duke@435 108 REM reference exist
duke@435 109
duke@435 110 if exist %HotSpotWorkSpace% goto test1
duke@435 111
duke@435 112 echo Error: directory pointed to by HotSpotWorkSpace
duke@435 113 echo does not exist, or the variable is not set.
duke@435 114 echo.
duke@435 115 goto usage
duke@435 116
duke@435 117 :test1
duke@435 118 if exist %HotSpotBuildSpace% goto test2
duke@435 119 if not "%HotSpotBuildSpace%" == "" mkdir %HotSpotBuildSpace%
duke@435 120 if exist %HotSpotBuildSpace% goto test2
duke@435 121 echo Error: directory pointed to by HotSpotBuildSpace
duke@435 122 echo does not exist, or the variable is not set.
duke@435 123 echo.
duke@435 124 goto usage
duke@435 125
duke@435 126 :test2
duke@435 127 if exist %HotSpotJDKDist% goto test3
duke@435 128 echo Error: directory pointed to by %HotSpotJDKDist%
duke@435 129 echo does not exist, or the variable is not set.
duke@435 130 echo.
duke@435 131 goto usage
duke@435 132
duke@435 133 :test3
duke@435 134 if not "%HOTSPOTMKSHOME%" == "" goto makedir
sla@2369 135 if exist c:\cygwin\bin set HOTSPOTMKSHOME=c:\cygwin\bin
sla@2369 136 if not "%HOTSPOTMKSHOME%" == "" goto makedir
duke@435 137 echo Warning: please set variable HOTSPOTMKSHOME to place where
duke@435 138 echo your MKS/Cygwin installation is
duke@435 139 echo.
duke@435 140 goto usage
duke@435 141
duke@435 142 :makedir
duke@435 143 echo NOTE: Using the following settings:
duke@435 144 echo HotSpotWorkSpace=%HotSpotWorkSpace%
duke@435 145 echo HotSpotBuildSpace=%HotSpotBuildSpace%
duke@435 146 echo HotSpotJDKDist=%HotSpotJDKDist%
duke@435 147
duke@435 148
duke@435 149 REM This is now safe to do.
duke@435 150 :copyfiles
zgu@4821 151 for /D %%i in (compiler1, compiler2, tiered, core) do (
sla@2369 152 if NOT EXIST %HotSpotBuildSpace%\%%i\generated mkdir %HotSpotBuildSpace%\%%i\generated
sla@2369 153 copy %HotSpotWorkSpace%\make\windows\projectfiles\%%i\* %HotSpotBuildSpace%\%%i\generated > NUL
duke@435 154 )
duke@435 155
duke@435 156 REM force regneration of ProjectFile
sla@2540 157 if exist %ProjectFile% del %ProjectFile%
duke@435 158
zgu@4821 159 for /D %%i in (compiler1, compiler2, tiered, core) do (
sla@2369 160 echo -- %%i --
sla@2369 161 echo # Generated file! > %HotSpotBuildSpace%\%%i\local.make
duke@435 162 echo # Changing a variable below and then deleting %ProjectFile% will cause >> %HotSpotBuildSpace%\%%i\local.make
duke@435 163 echo # %ProjectFile% to be regenerated with the new values. Changing the >> %HotSpotBuildSpace%\%%i\local.make
sla@2369 164 echo # version requires rerunning create.bat. >> %HotSpotBuildSpace%\%%i\local.make
duke@435 165 echo. >> %HotSpotBuildSpace%\%%i\local.make
sla@2369 166 echo Variant=%%i >> %HotSpotBuildSpace%\%%i\local.make
sla@2369 167 echo WorkSpace=%HotSpotWorkSpace% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 168 echo HOTSPOTWORKSPACE=%HotSpotWorkSpace% >> %HotSpotBuildSpace%\%%i\local.make
sla@2369 169 echo HOTSPOTBUILDROOT=%HotSpotBuildRoot% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 170 echo HOTSPOTBUILDSPACE=%HotSpotBuildSpace% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 171 echo HOTSPOTJDKDIST=%HotSpotJDKDist% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 172 echo ARCH=%ARCH% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 173 echo BUILDARCH=%BUILDARCH% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 174 echo Platform_arch=%Platform_arch% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 175 echo Platform_arch_model=%Platform_arch_model% >> %HotSpotBuildSpace%\%%i\local.make
sla@2540 176 echo MSC_VER=%MSC_VER% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 177
sla@2369 178 for /D %%j in (debug, fastdebug, product) do (
sla@2369 179 if NOT EXIST %HotSpotBuildSpace%\%%i\%%j mkdir %HotSpotBuildSpace%\%%i\%%j
sla@2369 180 )
sla@2369 181
sla@2369 182 pushd %HotSpotBuildSpace%\%%i\generated
duke@435 183 nmake /nologo
duke@435 184 popd
stefank@2314 185
duke@435 186 )
duke@435 187
sla@2369 188 pushd %HotSpotBuildRoot%
stefank@2314 189
sla@2369 190 REM It doesn't matter which variant we use here, "compiler1" is as good as any of the others - we need the common variables
sla@2540 191 nmake /nologo /F %HotSpotWorkSpace%/make/windows/projectfiles/common/Makefile LOCAL_MAKE=%HotSpotBuildSpace%\compiler1\local.make %ProjectFile%
stefank@2314 192
stefank@2314 193 popd
stefank@2314 194
duke@435 195 goto end
duke@435 196
duke@435 197 :usage
sla@2369 198 echo Usage: create HotSpotJDKDist
duke@435 199 echo.
sla@2369 200 echo This is the VS build setup script (as opposed to the batch
sla@2369 201 echo build execution script). It creates a build directory if necessary,
sla@2369 202 echo copies the appropriate files out of the workspace into it, and
stefank@2314 203 echo builds and runs ProjectCreator in it. This has the side-effect of creating
duke@435 204 echo the %ProjectFile% file in the build space, which is then used in Visual C++.
sla@2369 205 echo.
sla@2369 206 echo The HotSpotJDKDist defines the JDK that should be used when running the JVM.
duke@435 207 echo Environment variable FORCE_MSC_VER allows to override MSVC version autodetection.
duke@435 208 echo.
duke@435 209 echo NOTE that it is now NOT safe to modify any of the files in the build
duke@435 210 echo space, since they may be overwritten whenever this script is run or
duke@435 211 echo nmake is run in that directory.
duke@435 212
duke@435 213 :end
duke@435 214
duke@435 215 endlocal

mercurial