make/windows/create.bat

Tue, 29 Jul 2014 13:56:29 +0200

author
thartmann
date
Tue, 29 Jul 2014 13:56:29 +0200
changeset 7002
a073be2ce5c2
parent 5605
f462e61bce87
child 6876
710a3c8b516e
permissions
-rw-r--r--

8049043: Load variable through a pointer of an incompatible type in hotspot/src/share/vm/runtime/sharedRuntimeMath.hpp
Summary: Fixed parfait warnings caused by __HI and __LO macros in sharedRuntimeMath.hpp by using a union.
Reviewed-by: kvn

duke@435 1 @echo off
duke@435 2 REM
dcubed@5500 3 REM Copyright (c) 1999, 2013, 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
iklam@5605 85 echo MSC_VER = "%MSC_VER%"
duke@435 86 if "%MSC_VER%" == "1200" (
sla@2540 87 set ProjectFile=%HotSpotBuildSpace%\jvm.dsp
duke@435 88 echo Will generate VC6 project {unsupported}
duke@435 89 ) else (
ikrylov@1094 90 if "%MSC_VER%" == "1400" (
ikrylov@1094 91 echo Will generate VC8 {Visual Studio 2005}
ikrylov@1094 92 ) else (
ikrylov@1094 93 if "%MSC_VER%" == "1500" (
ikrylov@1094 94 echo Will generate VC9 {Visual Studio 2008}
ikrylov@1094 95 ) else (
sla@2369 96 if "%MSC_VER%" == "1600" (
sla@2675 97 echo Will generate VC10 {Visual Studio 2010}
sla@2675 98 set ProjectFile=%HotSpotBuildSpace%\jvm.vcxproj
sla@2369 99 ) else (
iklam@5605 100 if "%MSC_VER%" == "1700" (
iklam@5605 101 echo Will generate VC10 {compatible with Visual Studio 2012}
iklam@5605 102 echo After opening in VS 2012, click "Update" when prompted.
iklam@5605 103 set ProjectFile=%HotSpotBuildSpace%\jvm.vcxproj
iklam@5605 104 ) else (
ikrylov@1094 105 echo Will generate VC7 project {Visual Studio 2003 .NET}
ikrylov@1094 106 )
ikrylov@1094 107 )
duke@435 108 )
sla@2369 109 )
iklam@5605 110 )
sla@2675 111 echo %ProjectFile%
duke@435 112 echo **************************************************************
duke@435 113
duke@435 114 REM Test all variables to see whether the directories they
duke@435 115 REM reference exist
duke@435 116
duke@435 117 if exist %HotSpotWorkSpace% goto test1
duke@435 118
duke@435 119 echo Error: directory pointed to by HotSpotWorkSpace
duke@435 120 echo does not exist, or the variable is not set.
duke@435 121 echo.
duke@435 122 goto usage
duke@435 123
duke@435 124 :test1
duke@435 125 if exist %HotSpotBuildSpace% goto test2
duke@435 126 if not "%HotSpotBuildSpace%" == "" mkdir %HotSpotBuildSpace%
duke@435 127 if exist %HotSpotBuildSpace% goto test2
duke@435 128 echo Error: directory pointed to by HotSpotBuildSpace
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 :test2
duke@435 134 if exist %HotSpotJDKDist% goto test3
duke@435 135 echo Error: directory pointed to by %HotSpotJDKDist%
duke@435 136 echo does not exist, or the variable is not set.
duke@435 137 echo.
duke@435 138 goto usage
duke@435 139
duke@435 140 :test3
duke@435 141 if not "%HOTSPOTMKSHOME%" == "" goto makedir
sla@2369 142 if exist c:\cygwin\bin set HOTSPOTMKSHOME=c:\cygwin\bin
sla@2369 143 if not "%HOTSPOTMKSHOME%" == "" goto makedir
duke@435 144 echo Warning: please set variable HOTSPOTMKSHOME to place where
duke@435 145 echo your MKS/Cygwin installation is
duke@435 146 echo.
duke@435 147 goto usage
duke@435 148
duke@435 149 :makedir
duke@435 150 echo NOTE: Using the following settings:
duke@435 151 echo HotSpotWorkSpace=%HotSpotWorkSpace%
duke@435 152 echo HotSpotBuildSpace=%HotSpotBuildSpace%
duke@435 153 echo HotSpotJDKDist=%HotSpotJDKDist%
duke@435 154
duke@435 155
duke@435 156 REM This is now safe to do.
duke@435 157 :copyfiles
dcubed@5500 158 for /D %%i in (compiler1, compiler2, tiered ) do (
sla@2369 159 if NOT EXIST %HotSpotBuildSpace%\%%i\generated mkdir %HotSpotBuildSpace%\%%i\generated
sla@2369 160 copy %HotSpotWorkSpace%\make\windows\projectfiles\%%i\* %HotSpotBuildSpace%\%%i\generated > NUL
duke@435 161 )
duke@435 162
duke@435 163 REM force regneration of ProjectFile
sla@2540 164 if exist %ProjectFile% del %ProjectFile%
duke@435 165
dcubed@5500 166 for /D %%i in (compiler1, compiler2, tiered ) do (
sla@2369 167 echo -- %%i --
sla@2369 168 echo # Generated file! > %HotSpotBuildSpace%\%%i\local.make
duke@435 169 echo # Changing a variable below and then deleting %ProjectFile% will cause >> %HotSpotBuildSpace%\%%i\local.make
duke@435 170 echo # %ProjectFile% to be regenerated with the new values. Changing the >> %HotSpotBuildSpace%\%%i\local.make
sla@2369 171 echo # version requires rerunning create.bat. >> %HotSpotBuildSpace%\%%i\local.make
duke@435 172 echo. >> %HotSpotBuildSpace%\%%i\local.make
sla@2369 173 echo Variant=%%i >> %HotSpotBuildSpace%\%%i\local.make
sla@2369 174 echo WorkSpace=%HotSpotWorkSpace% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 175 echo HOTSPOTWORKSPACE=%HotSpotWorkSpace% >> %HotSpotBuildSpace%\%%i\local.make
sla@2369 176 echo HOTSPOTBUILDROOT=%HotSpotBuildRoot% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 177 echo HOTSPOTBUILDSPACE=%HotSpotBuildSpace% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 178 echo HOTSPOTJDKDIST=%HotSpotJDKDist% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 179 echo ARCH=%ARCH% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 180 echo BUILDARCH=%BUILDARCH% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 181 echo Platform_arch=%Platform_arch% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 182 echo Platform_arch_model=%Platform_arch_model% >> %HotSpotBuildSpace%\%%i\local.make
sla@2540 183 echo MSC_VER=%MSC_VER% >> %HotSpotBuildSpace%\%%i\local.make
duke@435 184
sla@2369 185 for /D %%j in (debug, fastdebug, product) do (
sla@2369 186 if NOT EXIST %HotSpotBuildSpace%\%%i\%%j mkdir %HotSpotBuildSpace%\%%i\%%j
sla@2369 187 )
sla@2369 188
sla@2369 189 pushd %HotSpotBuildSpace%\%%i\generated
duke@435 190 nmake /nologo
duke@435 191 popd
stefank@2314 192
duke@435 193 )
duke@435 194
sla@2369 195 pushd %HotSpotBuildRoot%
stefank@2314 196
sla@2369 197 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 198 nmake /nologo /F %HotSpotWorkSpace%/make/windows/projectfiles/common/Makefile LOCAL_MAKE=%HotSpotBuildSpace%\compiler1\local.make %ProjectFile%
stefank@2314 199
stefank@2314 200 popd
stefank@2314 201
duke@435 202 goto end
duke@435 203
duke@435 204 :usage
sla@2369 205 echo Usage: create HotSpotJDKDist
duke@435 206 echo.
sla@2369 207 echo This is the VS build setup script (as opposed to the batch
sla@2369 208 echo build execution script). It creates a build directory if necessary,
sla@2369 209 echo copies the appropriate files out of the workspace into it, and
stefank@2314 210 echo builds and runs ProjectCreator in it. This has the side-effect of creating
duke@435 211 echo the %ProjectFile% file in the build space, which is then used in Visual C++.
sla@2369 212 echo.
sla@2369 213 echo The HotSpotJDKDist defines the JDK that should be used when running the JVM.
duke@435 214 echo Environment variable FORCE_MSC_VER allows to override MSVC version autodetection.
duke@435 215 echo.
duke@435 216 echo NOTE that it is now NOT safe to modify any of the files in the build
duke@435 217 echo space, since they may be overwritten whenever this script is run or
duke@435 218 echo nmake is run in that directory.
duke@435 219
duke@435 220 :end
duke@435 221
duke@435 222 endlocal

mercurial