summaryrefslogtreecommitdiff
path: root/vcbuild.bat
diff options
context:
space:
mode:
authorTrevor Norris <trev.norris@gmail.com>2015-05-08 12:56:13 -0600
committerTrevor Norris <trev.norris@gmail.com>2015-05-11 13:01:04 -0600
commit36cdc7c8acda2a81a9e38df4978876659dc48bc3 (patch)
treef5789be54f95a7006d6e91590bdb8655639b26db /vcbuild.bat
parentf07b3b600b21f38783d7f889619a572b00c71247 (diff)
downloadandroid-node-v8-36cdc7c8acda2a81a9e38df4978876659dc48bc3.tar.gz
android-node-v8-36cdc7c8acda2a81a9e38df4978876659dc48bc3.tar.bz2
android-node-v8-36cdc7c8acda2a81a9e38df4978876659dc48bc3.zip
build: re-enable V8 snapshots
Snapshots had been previously disabled because of a security vunerability. This has been fixed (ref: https://github.com/iojs/io.js/issues/1631#issuecomment-100101375) Also, re-enable snapshots for ARMv6 builds. There were previous build issues that have been fixed. Fixes: https://github.com/iojs/io.js/issues/1631 PR-URL: https://github.com/iojs/io.js/pull/1663 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'vcbuild.bat')
-rw-r--r--vcbuild.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcbuild.bat b/vcbuild.bat
index 97d6ba3bbc..9132acbf44 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -21,7 +21,7 @@ set snapshot_arg=
set noprojgen=
set nobuild=
set nosign=
-set snapshot=
+set nosnapshot=
set test_args=
set msi=
set licensertf=
@@ -47,7 +47,7 @@ if /i "%1"=="x64" set target_arch=x64&goto arg-ok
if /i "%1"=="noprojgen" set noprojgen=1&goto arg-ok
if /i "%1"=="nobuild" set nobuild=1&goto arg-ok
if /i "%1"=="nosign" set nosign=1&goto arg-ok
-if /i "%1"=="snapshot" set snapshot=1&goto arg-ok
+if /i "%1"=="nosnapshot" set nosnapshot=1&goto arg-ok
if /i "%1"=="noetw" set noetw=1&goto arg-ok
if /i "%1"=="noperfctr" set noperfctr=1&goto arg-ok
if /i "%1"=="licensertf" set licensertf=1&goto arg-ok
@@ -76,7 +76,7 @@ goto next-arg
:args-done
if "%config%"=="Debug" set debug_arg=--debug
if "%target_arch%"=="x64" set msiplatform=x64
-if defined snapshot set snapshot_arg=--with-snapshot
+if defined nosnapshot set snapshot_arg=--without-snapshot
if defined noetw set noetw_arg=--without-etw& set noetw_msi_arg=/p:NoETW=1
if defined noperfctr set noperfctr_arg=--without-perfctr& set noperfctr_msi_arg=/p:NoPerfCtr=1