blob: bd4b548528c5c17608e1e3f0299c16569b58ed74 [file] [log] [blame]
Zachary Ware6b6e6872017-06-10 14:58:42 -05001@echo off
Steve Dower68d663c2017-07-17 11:15:48 +02002rem Downloads and build sources for libraries we depend upon
3
4goto Run
5:Usage
6echo.%~nx0 [flags and arguments]
7echo.
8echo.Download and build OpenSSL. This should only be performed in order to
9echo.update the binaries kept online - in most cases, the files downloaded
10echo.by the get_externals.bat script are sufficient for building CPython.
11echo.
12echo.Available flags:
13echo. -h Display this help message
14echo.
15echo.Available arguments:
16echo. --certificate (-c) The signing certificate to use for binaries.
17echo. --organization The github organization to obtain sources from.
18echo.
19exit /b 127
20
21:Run
22setlocal
23if "%PCBUILD%"=="" (set PCBUILD=%~dp0)
24if "%EXTERNALS_DIR%"=="" (set EXTERNALS_DIR=%PCBUILD%\..\externals)
25
26set ORG_SETTING=
27
28:CheckOpts
29if "%~1"=="-h" shift & goto Usage
30if "%~1"=="--certificate" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts
31if "%~1"=="-c" (set SigningCertificate=%~2) && shift && shift & goto CheckOpts
32if "%~1"=="--organization" (set ORG_SETTING=--organization "%~2") && shift && shift && goto CheckOpts
33
34if "%~1"=="" goto Build
35echo Unrecognized option: %1
36goto Usage
37
38:Build
Zachary Ware6c6d3a42017-12-30 17:17:36 -060039call "%PCBUILD%\find_msbuild.bat" %MSBUILD%
Steve Dower68d663c2017-07-17 11:15:48 +020040if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
41
Zachary Ware6c6d3a42017-12-30 17:17:36 -060042call "%PCBUILD%\find_python.bat" "%PYTHON%"
Steve Dower68d663c2017-07-17 11:15:48 +020043if ERRORLEVEL 1 (echo Cannot locate python.exe on PATH or as PYTHON variable & exit /b 3)
44
Zachary Ware6c6d3a42017-12-30 17:17:36 -060045call "%PCBUILD%\get_externals.bat" --openssl-src %ORG_SETTING%
Steve Dower68d663c2017-07-17 11:15:48 +020046
47if "%PERL%" == "" where perl > "%TEMP%\perl.loc" 2> nul && set /P PERL= <"%TEMP%\perl.loc" & del "%TEMP%\perl.loc"
48if "%PERL%" == "" (echo Cannot locate perl.exe on PATH or as PERL variable & exit /b 4)
49
Zachary Ware6c6d3a42017-12-30 17:17:36 -060050%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=Win32
Steve Dower68d663c2017-07-17 11:15:48 +020051if errorlevel 1 exit /b
Zachary Ware6c6d3a42017-12-30 17:17:36 -060052%MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=x64
Steve Dower68d663c2017-07-17 11:15:48 +020053if errorlevel 1 exit /b
Steve Dowerb84bcc42017-09-09 06:13:06 -070054