diff options
author | Julien Gilli <julien.gilli@joyent.com> | 2015-01-26 15:42:15 -0800 |
---|---|---|
committer | Timothy J Fontaine <tjfontaine@gmail.com> | 2015-01-26 15:59:16 -0800 |
commit | e67073256d847be085be7049cd1d6ebd8d86ac62 (patch) | |
tree | 25af122e16683c049476b8d15fea0e788e05e84d | |
parent | ddd40fd5dc42dd2ad841b0679611ac89c8f2d11d (diff) | |
download | node-e67073256d847be085be7049cd1d6ebd8d86ac62.tar.gz |
build: enable small-icu support for build-release
On Windows, when building the "build-release" rule, enable both small-icu
and download-all.
This change also slightly refactors the build-release rule, mainly so that
it's easier to read.
The resulting MSI package was tested on Windows 7.
Fixes #9099.
PR: #9100
PR-URL: https://github.com/joyent/node/pull/9100
Reviewed-By: Steven R. Loomis <srloomis@us.ibm.com>
Reviewed-By: Timothy J Fontaine <tjfontaine@gmail.com>
-rw-r--r-- | vcbuild.bat | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/vcbuild.bat b/vcbuild.bat index 126d4bac5..c16217c7a 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -37,6 +37,7 @@ set noperfctr_arg= set noperfctr_msi_arg= set i18n_arg= set download_arg= +set build_release= :next-arg if "%1"=="" goto args-done @@ -69,7 +70,7 @@ if /i "%1"=="small-icu" set i18n_arg=%1&goto arg-ok if /i "%1"=="full-icu" set i18n_arg=%1&goto arg-ok if /i "%1"=="intl-none" set i18n_arg=%1&goto arg-ok if /i "%1"=="download-all" set download_arg="--download=all"&goto arg-ok -if /i "%1"=="build-release" set nosnapshot=1&set config=Release&set msi=1&set licensertf=1&goto arg-ok +if /i "%1"=="build-release" set build_release=1&goto arg-ok echo Warning: ignoring invalid command line option `%1`. @@ -82,6 +83,15 @@ goto next-arg if defined upload goto upload if defined jslint goto jslint +if defined build_release ( + set nosnapshot=1 + set config=Release + set msi=1 + set licensertf=1 + set download_arg="--download=all" + set i18n_arg=small-icu +) + if "%config%"=="Debug" set debug_arg=--debug if "%target_arch%"=="x64" set msiplatform=x64 if defined nosnapshot set nosnapshot_arg=--without-snapshot |