|
381 | 381 | dest='shared_openssl_libpath',
|
382 | 382 | help='a directory to search for the shared OpenSSL DLLs')
|
383 | 383 |
|
| 384 | +shared_optgroup.add_argument('--shared-uvwasi', |
| 385 | + action='store_true', |
| 386 | + dest='shared_uvwasi', |
| 387 | + default=None, |
| 388 | + help='link to a shared uvwasi DLL instead of static linking') |
| 389 | + |
| 390 | +shared_optgroup.add_argument('--shared-uvwasi-includes', |
| 391 | + action='store', |
| 392 | + dest='shared_uvwasi_includes', |
| 393 | + help='directory containing uvwasi header files') |
| 394 | + |
| 395 | +shared_optgroup.add_argument('--shared-uvwasi-libname', |
| 396 | + action='store', |
| 397 | + dest='shared_uvwasi_libname', |
| 398 | + default='uvwasi', |
| 399 | + help='alternative lib name to link to [default: %default]') |
| 400 | + |
| 401 | +shared_optgroup.add_argument('--shared-uvwasi-libpath', |
| 402 | + action='store', |
| 403 | + dest='shared_uvwasi_libpath', |
| 404 | + help='a directory to search for the shared uvwasi DLL') |
| 405 | + |
384 | 406 | shared_optgroup.add_argument('--shared-zlib',
|
385 | 407 | action='store_true',
|
386 | 408 | dest='shared_zlib',
|
@@ -2119,6 +2141,7 @@ def make_bin_override():
|
2119 | 2141 | configure_library('nghttp2', output, pkgname='libnghttp2')
|
2120 | 2142 | configure_library('nghttp3', output, pkgname='libnghttp3')
|
2121 | 2143 | configure_library('ngtcp2', output, pkgname='libngtcp2')
|
| 2144 | +configure_library('uvwasi', output, pkgname='libuvwasi') |
2122 | 2145 | configure_v8(output)
|
2123 | 2146 | configure_openssl(output)
|
2124 | 2147 | configure_intl(output)
|
|
0 commit comments