duke@435: @echo off duke@435: REM dcubed@5500: REM Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. duke@435: REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: REM duke@435: REM This code is free software; you can redistribute it and/or modify it duke@435: REM under the terms of the GNU General Public License version 2 only, as duke@435: REM published by the Free Software Foundation. duke@435: REM duke@435: REM This code is distributed in the hope that it will be useful, but WITHOUT duke@435: REM ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: REM FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: REM version 2 for more details (a copy is included in the LICENSE file that duke@435: REM accompanied this code). duke@435: REM duke@435: REM You should have received a copy of the GNU General Public License version duke@435: REM 2 along with this work; if not, write to the Free Software Foundation, duke@435: REM Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: REM trims@1907: REM Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA trims@1907: REM or visit www.oracle.com if you need additional information or have any trims@1907: REM questions. duke@435: REM duke@435: REM duke@435: duke@435: REM This is the interactive build setup script (as opposed to the batch duke@435: REM build execution script). It creates $HotSpotBuildSpace if necessary, duke@435: REM copies the appropriate files out of $HotSpotWorkSpace into it, and stefank@2314: REM builds and runs ProjectCreator in it. This has the side-effect of creating duke@435: REM the vm.vcproj file in the buildspace, which is then used in Visual C++. duke@435: duke@435: REM duke@435: REM Since we don't have uname and we could be cross-compiling, duke@435: REM Use the compiler to determine which ARCH we are building duke@435: REM dcubed@1763: REM Note: Running this batch file from the Windows command shell requires dcubed@1763: REM that "grep" be accessible on the PATH. An MKS install does this. dcubed@1763: REM sla@2369: sla@2369: cl 2>NUL >NUL sla@2369: if %errorlevel% == 0 goto nexttest sla@2369: echo Make sure cl.exe is in your PATH before running this script. sla@2369: goto end sla@2369: sla@2369: :nexttest sla@2369: grep -V 2>NUL >NUL sla@2369: if %errorlevel% == 0 goto testit sla@2369: echo Make sure grep.exe is in your PATH before running this script. Either cygwin or MKS should work. sla@2369: goto end sla@2369: sla@2369: sla@2369: :testit sla@2540: cl 2>&1 | grep "x64" >NUL duke@435: if %errorlevel% == 0 goto amd64 duke@435: set ARCH=x86 duke@435: set BUILDARCH=i486 duke@435: set Platform_arch=x86 duke@435: set Platform_arch_model=x86_32 sla@2369: goto done duke@435: :amd64 duke@435: set ARCH=x86 duke@435: set BUILDARCH=amd64 duke@435: set Platform_arch=x86 duke@435: set Platform_arch_model=x86_64 sla@2369: :done duke@435: duke@435: setlocal duke@435: duke@435: if "%1" == "" goto usage duke@435: sla@2369: if not "%2" == "" goto usage duke@435: sla@2369: REM Set HotSpotWorkSpace to the directy two steps above this script sla@2369: for %%i in ("%~dp0..") do ( set HotSpotWorkSpace=%%~dpi) sla@2369: set HotSpotBuildRoot=%HotSpotWorkSpace%build sla@2540: set HotSpotBuildSpace=%HotSpotBuildRoot%\vs-%BUILDARCH% sla@2369: set HotSpotJDKDist=%1 sla@2369: duke@435: duke@435: REM figure out MSC version kamg@526: for /F %%i in ('sh %HotSpotWorkSpace%/make/windows/get_msc_ver.sh') do set %%i duke@435: duke@435: echo ************************************************************** sla@2540: set ProjectFile=%HotSpotBuildSpace%\jvm.vcproj iklam@5605: echo MSC_VER = "%MSC_VER%" duke@435: if "%MSC_VER%" == "1200" ( sla@2540: set ProjectFile=%HotSpotBuildSpace%\jvm.dsp duke@435: echo Will generate VC6 project {unsupported} duke@435: ) else ( ikrylov@1094: if "%MSC_VER%" == "1400" ( ikrylov@1094: echo Will generate VC8 {Visual Studio 2005} ikrylov@1094: ) else ( ikrylov@1094: if "%MSC_VER%" == "1500" ( ikrylov@1094: echo Will generate VC9 {Visual Studio 2008} ikrylov@1094: ) else ( sla@2369: if "%MSC_VER%" == "1600" ( sla@2675: echo Will generate VC10 {Visual Studio 2010} sla@2675: set ProjectFile=%HotSpotBuildSpace%\jvm.vcxproj sla@2369: ) else ( iklam@5605: if "%MSC_VER%" == "1700" ( iklam@5605: echo Will generate VC10 {compatible with Visual Studio 2012} iklam@5605: echo After opening in VS 2012, click "Update" when prompted. iklam@5605: set ProjectFile=%HotSpotBuildSpace%\jvm.vcxproj iklam@5605: ) else ( ikrylov@1094: echo Will generate VC7 project {Visual Studio 2003 .NET} ikrylov@1094: ) ikrylov@1094: ) duke@435: ) sla@2369: ) iklam@5605: ) sla@2675: echo %ProjectFile% duke@435: echo ************************************************************** duke@435: duke@435: REM Test all variables to see whether the directories they duke@435: REM reference exist duke@435: duke@435: if exist %HotSpotWorkSpace% goto test1 duke@435: duke@435: echo Error: directory pointed to by HotSpotWorkSpace duke@435: echo does not exist, or the variable is not set. duke@435: echo. duke@435: goto usage duke@435: duke@435: :test1 duke@435: if exist %HotSpotBuildSpace% goto test2 duke@435: if not "%HotSpotBuildSpace%" == "" mkdir %HotSpotBuildSpace% duke@435: if exist %HotSpotBuildSpace% goto test2 duke@435: echo Error: directory pointed to by HotSpotBuildSpace duke@435: echo does not exist, or the variable is not set. duke@435: echo. duke@435: goto usage duke@435: duke@435: :test2 duke@435: if exist %HotSpotJDKDist% goto test3 duke@435: echo Error: directory pointed to by %HotSpotJDKDist% duke@435: echo does not exist, or the variable is not set. duke@435: echo. duke@435: goto usage duke@435: duke@435: :test3 duke@435: if not "%HOTSPOTMKSHOME%" == "" goto makedir sla@2369: if exist c:\cygwin\bin set HOTSPOTMKSHOME=c:\cygwin\bin sla@2369: if not "%HOTSPOTMKSHOME%" == "" goto makedir duke@435: echo Warning: please set variable HOTSPOTMKSHOME to place where duke@435: echo your MKS/Cygwin installation is duke@435: echo. duke@435: goto usage duke@435: duke@435: :makedir duke@435: echo NOTE: Using the following settings: duke@435: echo HotSpotWorkSpace=%HotSpotWorkSpace% duke@435: echo HotSpotBuildSpace=%HotSpotBuildSpace% duke@435: echo HotSpotJDKDist=%HotSpotJDKDist% duke@435: duke@435: duke@435: REM This is now safe to do. duke@435: :copyfiles dcubed@5500: for /D %%i in (compiler1, compiler2, tiered ) do ( sla@2369: if NOT EXIST %HotSpotBuildSpace%\%%i\generated mkdir %HotSpotBuildSpace%\%%i\generated sla@2369: copy %HotSpotWorkSpace%\make\windows\projectfiles\%%i\* %HotSpotBuildSpace%\%%i\generated > NUL duke@435: ) duke@435: duke@435: REM force regneration of ProjectFile sla@2540: if exist %ProjectFile% del %ProjectFile% duke@435: dcubed@5500: for /D %%i in (compiler1, compiler2, tiered ) do ( sla@2369: echo -- %%i -- sla@2369: echo # Generated file! > %HotSpotBuildSpace%\%%i\local.make duke@435: echo # Changing a variable below and then deleting %ProjectFile% will cause >> %HotSpotBuildSpace%\%%i\local.make duke@435: echo # %ProjectFile% to be regenerated with the new values. Changing the >> %HotSpotBuildSpace%\%%i\local.make sla@2369: echo # version requires rerunning create.bat. >> %HotSpotBuildSpace%\%%i\local.make duke@435: echo. >> %HotSpotBuildSpace%\%%i\local.make sla@2369: echo Variant=%%i >> %HotSpotBuildSpace%\%%i\local.make sla@2369: echo WorkSpace=%HotSpotWorkSpace% >> %HotSpotBuildSpace%\%%i\local.make duke@435: echo HOTSPOTWORKSPACE=%HotSpotWorkSpace% >> %HotSpotBuildSpace%\%%i\local.make sla@2369: echo HOTSPOTBUILDROOT=%HotSpotBuildRoot% >> %HotSpotBuildSpace%\%%i\local.make duke@435: echo HOTSPOTBUILDSPACE=%HotSpotBuildSpace% >> %HotSpotBuildSpace%\%%i\local.make duke@435: echo HOTSPOTJDKDIST=%HotSpotJDKDist% >> %HotSpotBuildSpace%\%%i\local.make duke@435: echo ARCH=%ARCH% >> %HotSpotBuildSpace%\%%i\local.make duke@435: echo BUILDARCH=%BUILDARCH% >> %HotSpotBuildSpace%\%%i\local.make duke@435: echo Platform_arch=%Platform_arch% >> %HotSpotBuildSpace%\%%i\local.make duke@435: echo Platform_arch_model=%Platform_arch_model% >> %HotSpotBuildSpace%\%%i\local.make sla@2540: echo MSC_VER=%MSC_VER% >> %HotSpotBuildSpace%\%%i\local.make duke@435: sla@2369: for /D %%j in (debug, fastdebug, product) do ( sla@2369: if NOT EXIST %HotSpotBuildSpace%\%%i\%%j mkdir %HotSpotBuildSpace%\%%i\%%j sla@2369: ) sla@2369: sla@2369: pushd %HotSpotBuildSpace%\%%i\generated duke@435: nmake /nologo duke@435: popd stefank@2314: duke@435: ) duke@435: sla@2369: pushd %HotSpotBuildRoot% stefank@2314: sla@2369: 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: nmake /nologo /F %HotSpotWorkSpace%/make/windows/projectfiles/common/Makefile LOCAL_MAKE=%HotSpotBuildSpace%\compiler1\local.make %ProjectFile% stefank@2314: stefank@2314: popd stefank@2314: duke@435: goto end duke@435: duke@435: :usage sla@2369: echo Usage: create HotSpotJDKDist duke@435: echo. sla@2369: echo This is the VS build setup script (as opposed to the batch sla@2369: echo build execution script). It creates a build directory if necessary, sla@2369: echo copies the appropriate files out of the workspace into it, and stefank@2314: echo builds and runs ProjectCreator in it. This has the side-effect of creating duke@435: echo the %ProjectFile% file in the build space, which is then used in Visual C++. sla@2369: echo. sla@2369: echo The HotSpotJDKDist defines the JDK that should be used when running the JVM. duke@435: echo Environment variable FORCE_MSC_VER allows to override MSVC version autodetection. duke@435: echo. duke@435: echo NOTE that it is now NOT safe to modify any of the files in the build duke@435: echo space, since they may be overwritten whenever this script is run or duke@435: echo nmake is run in that directory. duke@435: duke@435: :end duke@435: duke@435: endlocal