File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ set enable_vtune_arg=
40
40
set configure_flags =
41
41
set build_addons =
42
42
set dll =
43
+ set enable_static =
43
44
set build_addons_napi =
44
45
set test_node_inspect =
45
46
set test_check_deopts =
@@ -92,6 +93,7 @@ if /i "%1"=="download-all" set download_arg="--download=all"&goto arg-ok
92
93
if /i " %1 " == " ignore-flaky" set test_args = %test_args% --flaky-tests=dontcare& goto arg-ok
93
94
if /i " %1 " == " enable-vtune" set enable_vtune_arg = 1& goto arg-ok
94
95
if /i " %1 " == " dll" set dll = 1& goto arg-ok
96
+ if /i " %1 " == " static" set enable_static = 1& goto arg-ok
95
97
if /i " %1 " == " no-NODE-OPTIONS" set no_NODE_OPTIONS = 1& goto arg-ok
96
98
97
99
echo Error: invalid command line option `%1 `.
@@ -124,6 +126,7 @@ if defined release_urlbase set configure_flags=%configure_flags% --release-urlba
124
126
if defined download_arg set configure_flags = %configure_flags% %download_arg%
125
127
if defined enable_vtune_arg set configure_flags = %configure_flags% --enable-vtune-profiling
126
128
if defined dll set configure_flags = %configure_flags% --shared
129
+ if defined enable_static set configure_flags = %configure_flags% --enable-static
127
130
if defined no_NODE_OPTIONS set configure_flags = %configure_flags% --without-node-options
128
131
129
132
if " %i18n_arg% " == " full-icu" set configure_flags = %configure_flags% --with-intl=full-icu
You can’t perform that action at this time.
0 commit comments