File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ set enable_vtune_arg=
3939set configure_flags =
4040set build_addons =
4141set dll =
42+ set enable_static =
4243
4344:next-arg
4445if " %1 " == " " goto args-done
@@ -82,6 +83,7 @@ if /i "%1"=="download-all" set download_arg="--download=all"&goto arg-ok
8283if /i " %1 " == " ignore-flaky" set test_args = %test_args% --flaky-tests=dontcare& goto arg-ok
8384if /i " %1 " == " enable-vtune" set enable_vtune_arg = 1& goto arg-ok
8485if /i " %1 " == " dll" set dll = 1& goto arg-ok
86+ if /i " %1 " == " static" set enable_static = 1& goto arg-ok
8587
8688echo Error: invalid command line option `%1 `.
8789exit /b 1
@@ -113,6 +115,7 @@ if defined release_urlbase set configure_flags=%configure_flags% --release-urlba
113115if defined download_arg set configure_flags = %configure_flags% %download_arg%
114116if defined enable_vtune_arg set configure_flags = %configure_flags% --enable-vtune-profiling
115117if defined dll set configure_flags = %configure_flags% --shared
118+ if defined enable_static set configure_flags = %configure_flags% --enable-static
116119
117120if " %i18n_arg% " == " full-icu" set configure_flags = %configure_flags% --with-intl=full-icu
118121if " %i18n_arg% " == " small-icu" set configure_flags = %configure_flags% --with-intl=small-icu
You can’t perform that action at this time.
0 commit comments