Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: build-v8.cmd

Issue 29748587: Issue 6063, 6531 - Update V8 to 6.5.254.41, use C++14 and NDK-r16b (Closed) Base URL: https://github.com/adblockplus/libadblockplus@549616e865707b89e95659d55c70e22d63130ce5
Left Patch Set: update CI Created April 18, 2018, 3:27 p.m.
Right Patch Set: fix and simplify build for Windows Created April 18, 2018, 6:41 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « appveyor.yml ('k') | build-v8.gypi » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 @echo off 1 @echo off
2 SETLOCAL 2 SETLOCAL
3 3
4 rem %1 - MSBuildBinPath, e.g. c:\Program Files (x86)\MSBuild\14.0\Bin 4 rem %1 - MSBuildBinPath, e.g. c:\Program Files (x86)\MSBuild\14.0\Bin
5 rem %2 - arch {ia32, x64} 5 rem %2 - arch {ia32, x64}
6 rem %3 - configuration {Release, Debug} 6 rem %3 - configuration {Release, Debug}
7 rem %4 - platform toolset, e.g. v140
8 set MsBuildBinPath=%~1 7 set MsBuildBinPath=%~1
9 set ARCH=%~2 8 set ARCH=%~2
10 set CONFIGURATION=%~3 9 set CONFIGURATION=%~3
11 set PlatformToolset=%~4
12 10
13 pushd "%~dp0" 11 pushd "%~dp0"
14 12
15 @python msvs_gyp_wrapper.py --depth=build\%ARCH%\v8 -f msvs -I build-v8.gypi --g enerator-output=build\%ARCH%\v8 -G msvs_version=2015 -Dtarget_arch=%ARCH% -Dhost _arch=%ARCH% third_party/v8/src/v8.gyp 13 @python msvs_gyp_wrapper.py --depth=build\%ARCH%\v8 -f msvs -I build-v8.gypi --g enerator-output=build\%ARCH%\v8 -G msvs_version=2017 -Dtarget_arch=%ARCH% -Dhost _arch=%ARCH% third_party/v8/src/v8.gyp
16 14
17 @"%MSBuildBinPath%/msbuild.exe" /m build/%ARCH%/v8/third_party/v8/src/v8.sln /p: PlatformToolset=%PlatformToolset% /p:Configuration=%CONFIGURATION% /target:v8_sn apshot,v8_libplatform,v8_libsampler 15 @"%MSBuildBinPath%/msbuild.exe" /m build/%ARCH%/v8/third_party/v8/src/v8.sln /p: Configuration=%CONFIGURATION% /target:v8_snapshot,v8_libplatform,v8_libsampler
18 16
19 popd 17 popd
20 18
21 ENDLOCAL 19 ENDLOCAL
22 20
23 exit /b 21 exit /b
LEFTRIGHT

Powered by Google App Engine
This is Rietveld