]> git.saurik.com Git - apple/icu.git/blobdiff - BuildICUForAAS_script.bat
ICU-66108.tar.gz
[apple/icu.git] / BuildICUForAAS_script.bat
index b64d96f044e0b257a581e7dbfc0f616fbe1ad5b3..b02b7b1fea6e3dcee85f5a1d047a4d1c63d91ff3 100755 (executable)
@@ -6,43 +6,43 @@ rem # 1. The current directory is set to the top of the ICU source directory,
 rem #    i.e. the location of this bat file and of the ICU top-level makefile.\r
 rem # 2. SRCROOT is set to the Win-style path for that source directory.\r
 rem # 3. DSTROOT is set to the Win-style install path, e.g.\r
-rem #    C:\cygwin\home\Peter\ICUroot or C:\AppleInternal\r
+rem #    C:\cygwin64\home\pkedberg\ICUroot or C:\AppleInternal\r
 rem # 4. OBJROOT and SYMROOT are also set to the appropriate Win-style path;\r
 rem #    separate subdirectories under these directories will be used for 32-bit and 64-bit builds.\r
 rem # 5. CYGWINPATH is set to the full Windows-style path for Cygwin tools including bash, e.g.\r
-rem #    C:\cygwin\bin\r
-rem # 6. VS100COMNTOOLS is set to the full Windows-style path for VS 2010 common tools, e.g.\r
-rem #    C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\\r
+rem #    C:\cygwin64\bin\r
+rem # 6. VS140COMNTOOLS is set to the full Windows-style path for VS 2015 common tools, e.g.\r
+rem #    C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\\r
 rem #    (don't set explicitly, it should get set up by windows)\r
 rem # 7. VC tools (compiler, linker) are in the following directories:\r
-rem #    "%VS100COMNTOOLS%\..\..\VC\bin" (32-bit)\r
-rem #    "%VS100COMNTOOLS%\..\..\VC\bin\amd64" (64-bit)\r
-rem #    (the make parameter VS100VCTOOLS_PATH specifies the appropriate one)\r
+rem #    "%VS140COMNTOOLS%\..\..\VC\bin" (32-bit)\r
+rem #    "%VS140COMNTOOLS%\..\..\VC\bin\amd64" (64-bit)\r
+rem #    (the make parameter VS140VCTOOLS_PATH specifies the appropriate one)\r
 rem # 8. This bat script is invoked with an argument of "'install" or "install_debug" depending\r
 rem #    on which is desired.\r
 rem #\r
 rem # Example of usage:\r
-rem # >cd to whatever SRCROOT should be, e.g. >cd C:\cygwin\home\Peter\ICU\r
-rem # >set SRCROOT=C:\cygwin\home\Peter\ICU\r
-rem # >set DSTROOT=C:\cygwin\home\Peter\ICUroot\r
-rem # >set OBJROOT=C:\cygwin\home\Peter\ICU\build\r
-rem # >set SYMROOT=C:\cygwin\home\Peter\ICU\build\r
-rem # >set CYGWINPATH=C:\Cygwin\bin\r
+rem # >cd to whatever SRCROOT should be, e.g. >cd C:\cygwin64\home\pkedberg\ICU\r
+rem # >set SRCROOT=C:\cygwin64\home\pkedberg\ICU\r
+rem # >set DSTROOT=C:\cygwin64\home\pkedberg\ICUroot\r
+rem # >set OBJROOT=C:\cygwin64\home\pkedberg\ICU\build\r
+rem # >set SYMROOT=C:\cygwin64\home\pkedberg\ICU\build\r
+rem # >set CYGWINPATH=C:\cygwin64\bin\r
 rem # >BuildICUForAAS_script.bat install\r
 rem ================\r
 echo # CYGWINPATH= "%CYGWINPATH%"\r
 echo # DSTROOT= "%DSTROOT%"\r
 echo # OBJROOT= "%OBJROOT%"\r
 echo # == Run vcvarsall for 32-bit\r
-call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x86\r
+call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" x86\r
 echo # == Run ICU make for 32-bit\r
 @echo on\r
-"%CYGWINPATH%\bash.exe" -c '/bin/make %1 WINDOWS=YES ARCH64=NO VS100VCTOOLS_PATH="%VS100COMNTOOLS%\..\..\VC\bin"'\r
+"%CYGWINPATH%\bash.exe" -c '/bin/make %1 WINDOWS=YES ARCH64=NO VS140VCTOOLS_PATH="%VS140COMNTOOLS%\..\..\VC\bin"'\r
 @echo off\r
 echo # == Run vcvarsall for 64-bit\r
-call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" amd64\r
+call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" amd64\r
 echo # == Run ICU make for 64-bit\r
 @echo on\r
-"%CYGWINPATH%\bash.exe" -c '/bin/make %1 WINDOWS=YES ARCH64=YES VS100VCTOOLS_PATH="%VS100COMNTOOLS%\..\..\VC\bin\amd64"'\r
+"%CYGWINPATH%\bash.exe" -c '/bin/make %1 WINDOWS=YES ARCH64=YES VS140VCTOOLS_PATH="%VS140COMNTOOLS%\..\..\VC\bin\amd64"'\r
 @echo off\r
 echo # == All done!\r